*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    height:120px;
}

nav ul{
    display:flex;
    list-style:none;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#2e7d32;
}

.hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:180px 8% 100px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:60px;
    color:#2e7d32;
    margin-bottom:15px;
}

.hero-text h2{
    font-size:30px;
    color:#555;
    margin-bottom:30px;
}

.hero-text p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:25px;
}

.hero-text ul{
    list-style:none;
    margin-bottom:35px;
}

.hero-text li{
    margin:12px 0;
    font-size:18px;
}

.btn{
    display:inline-block;
    background:#2e7d32;
    color:#fff;
    padding:16px 38px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#2f6b2f;
    transform:translateY(-3px);
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:650px;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}
.features{
    display:flex;
    justify-content:center;
    gap:30px;
    background:#0f5d2e;
    padding:70px 40px;
    color:#fff;
    flex-wrap:wrap;
}

.feature{
    width:300px;
    text-align:center;
}

.feature h3{
    font-size:48px;
    margin-bottom:15px;
}

.feature h4{
    font-size:24px;
    margin-bottom:15px;
}

.feature p{
    line-height:1.7;
    color:#e8e8e8;
}
/* ===== Unsere Leistungen ===== */

.services{
    padding:100px 8%;
    background:#ffffff;
}

.services h2{
h2{
    text-align:center;
    color:#2f6b2f;
    font-size:42px;
    margin-bottom:50px;
}}

.services-box{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.service-card{
    width:340px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-content{
    padding:25px;
}

.service-content h3{
    color:#0f5d2e;
    margin-bottom:15px;
}

.service-content p{
    color:#555;
    line-height:1.6;
}
.features{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    padding:70px 8%;
    background:#f8f8f8;
}

.feature{
    width:300px;
    background:#3f7d3a;
    color:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.feature h3{
    margin-bottom:15px;
    font-size:22px;
}

.feature p{
    line-height:1.6;
}
footer{
    background:#2f6b2f;
    color:white;
    text-align:center;
    padding:30px;
    margin-top:80px;
}
.contact{
    text-align:center;
    padding:80px 20px;
    background:#f8f8f8;
}

.contact p{
    font-size:18px;
    margin:12px 0;
}
.footer{
    background:#2f6b2f;
    color:white;
    padding:50px 8%;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:30px;
}

.footer a{
    color:white;
    text-decoration:none;
}

.footer a:hover{
    text-decoration:underline;
}

.footer hr{
    margin:30px 0;
    border:none;
    height:1px;
    background:rgba(255,255,255,.3);
}

.copyright{
    text-align:center;
    font-size:14px;
}
@media (max-width: 768px){

    .hero{
        flex-direction:column;
        text-align:center;
        padding:50px 20px;
    }

    .hero-text h1{
        font-size:38px;
    }

    .hero-image img{
        width:100%;
        max-width:400px;
    }

    .services-box{
        flex-direction:column;
        align-items:center;
    }

    .service-card{
        width:100%;
        max-width:340px;
    }

    .features{
        flex-direction:column;
        align-items:center;
    }

    .feature{
        width:100%;
        max-width:340px;
    }

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

    nav ul{
        flex-direction:column;
        gap:15px;
    }
}
nav a{
    transition: 0.3s;
}

nav a:hover{
    color: #3f7d3a;
}
.btn{
    display: inline-block;
    margin: 20px auto;
    transition: 0.3s;
}
.btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(63,125,58,0.3);
}
.service-card{
    transition: 0.3s;
}

.service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
html{
    scroll-behavior: smooth;
}

body{
    overflow-x: hidden;
}
.contact iframe{
    max-width: 700px;
    width: 100%;
    display: block;
    margin: 30px auto 0;
    border-radius: 12px;
}