/* --- VARIABLEN & BASIS --- */
:root {
    --brand-blue: rgb(17, 72, 95);
    --brand-gray: rgb(99, 99, 99);
    --card-bg: #f1f5f9; 
    --accent: #0284c7;
    --accent-hover: #38bdf8;
    --white: #ffffff;
    --text-main: #334155;
    --success: #10b981;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    background-color: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;

    opacity: 0.06;

    background-image:
        repeating-radial-gradient(
            circle at 0 0,
            rgba(0,0,0,0.08) 0px,
            rgba(0,0,0,0.08) 1px,
            transparent 1px,
            transparent 3px
        );
}

/* --- NAVIGATION --- */
.nav-container {
    /* Fixiert, damit das Menü beim Scrollen immer oben bleibt */
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 9999;
        /* sorgt dafür, dass der Button immer klickbar bleibt */
    pointer-events: auto;
}

.hamburger {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 10px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

/* Wenn Seite gescrollt wurde */
.nav-container.scrolled .hamburger span {
    background: var(--brand-gray);
}

/* Hintergrundbox ebenfalls anpassen */
.nav-container.scrolled .hamburger {
    background: rgba(255,255,255,0.85);
}

.menu-content {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 200px;
    overflow: hidden;
}

.menu-content a {
    color: var(--brand-gray);
    padding: 15px 20px;
    text-decoration: none;
    display: block;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
}

.menu-content a:hover { background: #f8fafc; color: var(--accent); }

/* --- HEADER (FIXIERT IM HINTERGRUND) --- */
header {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-gray) 100%);
    color: white;
    /* Padding oben etwas erhöht, damit Logo/Text nicht zu nah am neuen weißen Rand kleben */
    padding: 80px 20px 100px; 
    
    /* NEUES POLYGON: Erzeugt die diagonale Banderole */
    /* Punkt 1: oben links (jetzt bei 15% Höhe statt 0) */
    /* Punkt 2: oben rechts (bleibt bei 0,0) */
    /* Punkt 3: unten rechts (bleibt bei 88%) */
    /* Punkt 4: unten links (bleibt bei 100%) */
    clip-path: polygon(0 15%, 100% 0, 100% 88%, 0 100%);
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1; 
    
    display: flex;
    flex-direction: row; 
    align-items: center; 
    justify-content: flex-start; 
    gap: 30px; 
    box-sizing: border-box;
}

.header-logo {
    max-width: clamp(180px, 30vw, 320px);
    height: auto;
    margin-bottom: 0; 
}

header p { 
    /* 1. Etwas größer und fetter */
    font-size: clamp(1.1rem, 2.5vw, 1.8rem); 
    font-weight: 700; /* Deutlich präsenter */
    
    /* 2. Modernes Styling: Alles Großbuchstaben & mehr Abstand */
    text-transform: uppercase;
    letter-spacing: 0.15em; 
    
    /* 3. Subtiler Schatten für Tiefe (kein klassischer schwarzer Schatten!) */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

    /* 4. Ein Hauch von Farbe oder Glanz */
    color: rgba(255, 255, 255, 0.95);
    
    /* 5. Optional: Eine feine Linie links als Trenner zum Logo */
    border-left: 2px solid var(--accent);
    padding-left: 20px;
    margin-left: 10px;

    white-space: nowrap; 
    max-width: none; 
    transition: all 0.3s ease;
}

/* Kleiner Effekt: Wenn man über den Header fährt, leuchtet der Slogan auf */
header:hover p {
    color: var(--white);
    letter-spacing: 0.18em; /* Minimales Aufweiten beim Hover */
}

/* --- CONTAINER & CARDS (GLEITEN ÜBER HEADER) --- */
.main-content-area {
    margin-top: 260px; /* Dieser Wert schiebt alles unter den Header */
    position: relative;
    z-index: 10;
}
.container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    /* margin-top hier bitte auf 0 setzen oder löschen */
    margin-top: 0;
}

.slide-card {
    background: var(--card-bg); 
    border-radius: 20px;
    padding: clamp(25px, 5vw, 45px);
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
            box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
            border-color 0.3s ease;
    will-change: transform;
    border: 1px solid #e2e8f0;
    position: relative;
    container-type: inline-size;
}

.slide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--accent);
}

/* --- STATS & STAMP --- */
.slide-card-stats {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.background-stamp {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-3deg);
    font-size: 12cqw; 
    font-weight: 900;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 2cqw; 
    user-select: none;
    opacity: 0.9;
}

.stats-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    padding-bottom: 10px;
}

.stats-header h2 {
    margin: 0;
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    color: var(--brand-gray);
}

.stats-grid {
    position: relative;
    z-index: 1; 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(20px, 5vw, 50px);
    text-align: center;
}

.counter-wrapper {
    font-size: clamp(2.2rem, 8vw, 3.8rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: clamp(0.85rem, 2.2vw, 1.05rem);
    font-weight: 600;
    color: var(--text-main);
    margin-top: 10px;
}

/* --- FEATURES --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-box {
    padding: 30px;
    border-radius: 15px;
    background: rgba(241, 245, 249, 0.6); /* --card-bg mit Transparenz */
    transition: all 0.3s ease;
    border-left: 5px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    background: var(--white);
    border-left-color: var(--accent);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-box h4 { 
    margin: 0 0 10px 0; 
    color: var(--brand-gray);
    font-size: 1.2rem;
    z-index: 2;
}

.icon{
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 90px;
    opacity: 0.15;
    pointer-events: none;
}

.feature-box:hover .icon {
    opacity: 0.12;
    transform: scale(1.1);
    filter: grayscale(0); /* Farbe kommt beim Hover zurück */
}

/* --- CTA & BUTTONS --- */
.cta-section {
    /* Nutzt deine Markenfarbe mit 85% Deckkraft (0.85) */
    background: rgba(99, 99, 99, 0.7); 
    
    /* Der Clou: Alles hinter der Section wird weichgezeichnet */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); /* Für Safari Support */

    color: white;
    padding: clamp(40px, 8vw, 60px) 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    
    /* Schatten etwas dezenter, da die Section nun "leichter" wirkt */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* Ein feiner weißer Rahmen verstärkt den Glas-Effekt */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 15px 45px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 4s infinite;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(14,165,233,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(14,165,233,0); }
    100% { box-shadow: 0 0 0 0 rgba(14,165,233,0); }
}

button:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

.cta-section:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* --- UTILS --- */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    background: var(--brand-gray);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-container {
    background: rgba(0,0,0,0.06);
    border-radius: 10px;
    height: 10px;
    width: 100%;
    max-width: 250px;
    margin: 15px auto 0;
    overflow: hidden;
}

.progress-bar {
    background: var(--accent);
    height: 100%;
    width: 0%; 
    transition: width 2s cubic-bezier(0.1, 0.5, 0.5, 1);
}

/* --- MOBILE ANPASSUNGEN --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 40px 20px 60px;
        text-align: center;
        gap: 10px;
    }
    header p {
        white-space: normal; /* Erlaubt Umbruch auf Handys */
        text-align: center;
    }
    .container {
        margin-top: 240px; /* Weniger Abstand oben auf Mobile */
    }
    .background-stamp {
        font-size: 13cqw;
    }
}

@media (max-width: 480px) {
    header {
        /* Auf dem Handy etwas flacher, damit mehr Platz für den Inhalt bleibt */
        clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
        padding: 40px 20px;
    }
    .container {
        margin-top: 220px; /* Abstand an den flacheren Header anpassen */
    }
}

footer {
    background: var(--brand-gray);
    color: var(--white);
    padding: 100px 20px 40px;
    /* Diagonale oben, passend zum Header-Stil */
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    margin-top: 50px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px; /* Kleiner Interaktionseffekt */
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Macht ein farbiges Logo komplett weiß */
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    footer {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
        padding-top: 60px;
    }
    .footer-grid {
        text-align: center;
    }
}

/* --- COOKIE BANNER --- */
.cookie-overlay {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%); /* Zentriert das Banner horizontal */
    z-index: 9999;
    width: 90%;
    max-width: 500px;
    display: flex; /* Nutze 'none' nur, wenn du es per Standard verstecken willst */
}

.cookie-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-content h3 {
    margin: 0 0 10px 0;
    color: var(--brand-blue);
    font-size: 1.2rem;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Button-Styling angepasst an dein Design */
.cookie-buttons button {
    padding: 10px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    font-weight: 600;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border: none;
}

.btn-outline {
    background: transparent;
    color: var(--brand-gray);
    border: 1px solid var(--brand-gray);
}

.btn-outline:hover {
    background: #f1f5f9;
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookie-buttons button {
        width: 100%;
    }
}

/* --- 1. DER HEADER-CONTAINER (SUBPAGE) --- */
header.subpage-header {
    /* Verlauf umgekehrt: Grau links, Blau rechts */
    background: linear-gradient(135deg, var(--brand-gray) 0%, var(--brand-blue) 100%);
    
    /* Viel Platz für die Elemente, 5% Abstand zu den Seitenrändern */
    padding: 50px 5% 80px; 
    
    clip-path: polygon(0 15%, 100% 0, 100% 88%, 0 100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-sizing: border-box;
}

/* --- 2. LAYOUT-STRUKTUR (FLEX) --- */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px; /* Damit es auf Ultra-Wide Monitoren nicht zu weit auseinander driftet */
    margin: 0 auto;
}

.header-brand-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Alles knallhart rechtsbündig */
    text-align: right;
}

/* --- 3. LOGO & CLAIM (SKALIEREND) --- */
.header-logo-img {
    /* Dynamische Größe: Minimum 80px, wächst mit dem Monitor (10vw), Maximum 180px */
    height: clamp(50px, 6vw, 100px); 
    width: auto;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

.header-logo-img:hover {
    transform: scale(1.05);
}

.header-claim {
    /* Dynamische Schrift: Minimum 1rem, wächst mit (1.2vw), Maximum 1.5rem */
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    color: #ffffff; /* Knackiges Weiß für besten Kontrast auf Blau */
    opacity: 1;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

/* --- 4. DER TITEL LINKS (IMPRESSUM) --- */
.header-left p {
    /* Auch der Text links sollte mitwachsen */
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
    color: white;
}

/* --- ÜBER UNS SPEZIFISCH --- */
.about-page {
    padding-top: 100px; /* Platz für fixen Header */
}

.about-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, var(--card-bg) 100%);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-main);
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.stat-box-large {
    background: var(--brand-blue);
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
}

.stat-box-large .number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.alternate-bg {
    background-color: #f8fafc; /* Sehr dezentes Hellgrau/Blau */
    padding: 100px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

/* 1. Den gesamten Inhalt unter den Header schieben */
.about-page {
    /* Der Header ist ca. 200px hoch (inkl. Schräge), also schieben wir 250px Platz */
    margin-top: 250px; 
    background-color: var(--white);
    position: relative;
    z-index: 5;
}

/* 2. Die erste Sektion (Hero) optisch vom Header trennen */
.about-hero-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--white); /* Weißer Hintergrund, kein Durchscheinen mehr */
}

.about-hero-section h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--brand-blue);
    max-width: 900px;
    margin: 20px auto;
}

/* 3. Den Split-Bereich (Strategie & 180k) hübsch machen */
.about-content-split {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--card-bg) 100%);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

/* 4. Die große blaue Statistik-Box */
.stat-box-large {
    background: var(--brand-blue);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-box-large .number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--white);
}
/* --- 2. ÜBER UNS SEITE (OPERATIVE STÄRKE) --- */
/* Diese Regeln gelten NUR, wenn die Box in der 'operative-strength-card' liegt */

.operative-strength-card .feature-box {
    background: rgba(241, 245, 249, 0.4);
    padding: 24px 28px !important; /* Kompakter für die Unterseite */
    border-left: none !important;  /* Keinen Balken links auf der Unterseite */
    transform: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.operative-strength-card .feature-box:hover {
    background: var(--white);
    transform: translateY(-4px) !important; /* Nur leichtes Hochsteigen */
    border-left: none !important; 
    border-color: rgba(2, 132, 199, 0.1);
}

.operative-strength-card .feature-box h4 {
    color: var(--brand-blue);
    font-size: 1.15rem; /* Etwas kleiner für den kompakten Look */
    font-weight: 700;
}

.operative-strength-card .feature-box p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Die Hover-Line (Nur für Unterseite) */
.operative-strength-card .feature-box .hover-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--accent);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.operative-strength-card .feature-box:hover .hover-line {
    width: 100%;
    left: 0;
}
/* --- OPERATIVE STÄRKE (Spezifisch für Über uns - OHNE Konflikt) --- */

.operative-strength-card .grid {
    gap: 30px; /* Etwas mehr Luft für die neuen Boxen */
}

/* Wir überschreiben die Standard-Box nur, wenn sie in der operative-strength-card liegt */
.operative-strength-card .feature-box {
    background: rgba(241, 245, 249, 0.4);
    padding: 40px;
    border-left: none; /* Kein Border-Left hier! */
    transform: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.operative-strength-card .feature-box:hover {
    background: var(--white);
    transform: translateY(-8px); /* Nur Hochsteigen, kein Skalieren */
    border-left: none; 
    border-color: rgba(2, 132, 199, 0.1);
}

.operative-strength-card .feature-box h4 {
    color: var(--brand-blue);
    font-size: 1.3rem;
    font-weight: 700;
}

/* Die Hover-Line Spielerei */
.hover-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--accent);
    transition: all 0.4s ease;
    border-radius: 2px;
}

.operative-strength-card .feature-box:hover .hover-line {
    width: 100%;
    left: 0;
}

/* --- STATS & SPLIT (Über uns Anpassungen) --- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.card-split-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
}

.card-text-side { flex: 1 1 400px; }
.card-video-side { flex: 1 1 300px; }

.video-wrapper {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    line-height: 0;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/* --- KONTAKT FORMULAR ANPASSUNG --- */

.card-form-side {
    flex: 1 1 300px;
    background: #ffffff;
    padding: 40px; /* Gleichmäßiges Padding an allen Seiten */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    
    /* WICHTIG: Stellt sicher, dass Padding Teil der Breite ist */
    box-sizing: border-box; 
    
    /* Zentrierung des Inhalts, falls die Box breiter als das Formular wird */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    width: 100%;
    margin: 0 auto; /* Zentriert das Formular innerhalb der Card */
}

.contact-form .form-group {
    width: 100%;
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    /* Verhindert, dass die Inputs über den Rand ragen */
    box-sizing: border-box; 
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}