/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.6;
}

/* NAVIGATION */
header {
    width: 100%;
    padding: 25px 40px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
}

.logo span {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-btn {
    padding: 10px 20px;
    border: 1px solid #111;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    border-radius: 4px;
}

.nav-btn:hover {
    background: #111;
    color: #fff;
}

/* HERO */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 160px 40px 100px;
    max-width: 1300px;
    margin: auto;
    gap: 40px;
}

.hero-left {
    flex: 1;
}

.hero-left h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-left p {
    max-width: 500px;
    margin-bottom: 30px;
    font-size: 17px;
}

.cta {
    padding: 14px 28px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.cta:hover {
    opacity: 0.8;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* VORTEILE */
.vorteile {
    padding: 100px 40px;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.vorteile h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.v-card {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
}

.v-card img {
    width: 60px;
    margin-bottom: 20px;
}

.v-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* LEISTUNGEN */
.leistungen {
    padding: 100px 40px;
    max-width: 1300px;
    margin: auto;
    text-align: center;
}

.leistungen h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtext {
    margin-bottom: 50px;
    font-size: 17px;
    color: #444;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

/* LEISTUNGEN – gleiche Box-Optik wie Vorteile */
.l-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    transition: 0.3s;
}

/* Bild im Kasten */
.l-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Optionaler Hover-Effekt */
.l-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

/* ERFOLG */
.erfolg {
    padding: 120px 40px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.erfolg h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.erfolg p {
    font-size: 18px;
    color: #444;
}

/* KONTAKT */
.kontakt {
    padding: 100px 40px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.kontakt h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    padding: 40px;
    background: #111;
    color: #fff;
    text-align: center;
    margin-top: 50px;
}

/* MOBILE */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-right img {
        margin-top: 20px;
    }
}
/* Rechtliches Bereich */
.rechtliches {
    padding: 80px 40px;
    max-width: 900px;
    margin: 80px auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.rechtliches h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.rechtliches h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
}

.rechtliches p {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.6;
}

.rechtliches a {
    color: #111;
    text-decoration: underline;
}
