* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: #1f2937;
    line-height: 1.7;
    background: #ffffff;
}


header {
 background: #ffffff;
    padding: 12px 8%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.logo {
   display: flex;
    align-items: center;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}


.nav-links a {
    color: #111827;
    text-decoration: none;
    font-size: 16px;
}


.hero {
    min-height: 85vh;
    background: linear-gradient(
        rgba(17,24,39,0.9),
        rgba(17,24,39,0.85)
    );
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 8%;
}


.hero-content {
      max-width: 750px;
}


.hero h1 {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 25px;
}


.hero p {
    font-size: 20px;
    margin-bottom: 15px;
}


.buttons {
    margin-top: 35px;
}


.button {
    display: inline-block;
    padding: 15px 30px;
    background: #c9a227;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-right: 15px;
}


.button.secondary {
    background: transparent;
    border: 1px solid white;
}


section {
    padding: 80px 8%;
}


section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    text-align: center;
}


section p {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 18px;
}


.intro {
    text-align: center;
    background: #f8fafc;
}



.cards {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 40px;
}


.card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}


.card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}



.difference {
    background: #111827;
    color: white;
}


.columns {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}


.columns div {
    padding: 30px;
    text-align: center;
}



.steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    text-align: center;
}


.steps div {
    background:#f1f5f9;
    padding:25px;
    border-radius:10px;
}



.vision {
    text-align:center;
    background:#f8fafc;
}



#kontakt {
    text-align:center;
}



footer {
    background:#111827;
    color:white;
    padding:30px;
    text-align:center;
}



@media(max-width:800px){

    .hero h1 {
        font-size:40px;
    }


    .nav-links {
        display:none;
    }


    .cards,
    .columns,
    .steps {
        grid-template-columns:1fr;
    }

}
/* Header Logo */
.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    width: 150px;
    height: auto;
    display: block;
}
/* Animiertes Logo im Hero-Bereich */
.hero-logo img {
    width: 260px;
    height: auto;
    display: block;
}
.difference-bottom {
    margin-top: 50px;
    text-align: center;
    padding: 30px;
}

.difference-bottom h3 {
    font-size: 28px;
    margin-bottom: 15px;
}
.contact-box {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 40px;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
}

.contact-box h3 {
    font-size: 28px;
    margin-bottom: 20px;
}
.footer-content {
    text-align: center;
    line-height: 1.8;
}

.footer-content a {
    color: white;
    text-decoration: none;
}

.footer-content a:hover {
    text-decoration: underline;
}