:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    /* Navbar leicht transparent für den modernen Milchglas-Effekt */
    --navbar-bg: rgba(26, 26, 26, 0.92);
    --navbar-text: #cccccc;
    --accent-color: #f39c12;
    --card-bg: rgba(128, 128, 128, 0.06);
    --card-border: rgba(128, 128, 128, 0.15);
}

[data-theme="dark"] {
    --bg-color: #121212;
    --text-color: #e0e0e0;
    --navbar-bg: rgba(10, 10, 10, 0.92);
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Wichtig, da die neue Navbar fixiert ist und über dem Content schwebt */
    padding-top: 75px; 
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 3000;
}

.cookie-banner button {
    margin: 5px;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    background: #f39c12;
    color: white;
    border-radius: 5px;
}

/* ==========================================================
   MODERNE NAVBAR (GLASSMORPHISM-STIL)
   ========================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--navbar-bg);
    /* Schicker Weichzeichner-Effekt für den Hintergrund */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 40px;
    position: fixed; /* Bleibt beim Scrollen immer oben haften */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease;
}

.nav-logo {
    flex: 1;
}

.nav-logo a {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Verleiht dem Wort "Transport" direkt euren Marken-Farbton */
.nav-logo a span {
    color: var(--accent-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex: 2;
}

.nav-links a {
    color: var(--navbar-text);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}

/* Eleganter, flüssiger Unterstreich-Effekt von links nach rechts */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

.nav-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Cleaner Night-Mode Button */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.2);
}

/* Mobil-Menü */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle-label span { width: 25px; height: 3px; background: white; border-radius: 2px; }

@media screen and (max-width: 768px) {
    .navbar { padding: 15px 25px; }
    .nav-toggle-label { display: flex; order: 2; }
    .nav-links {
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%;
        background: var(--navbar-bg); 
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        gap: 0;
        max-height: 0; 
        overflow: hidden; 
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--card-border);
    }
    .nav-toggle:checked ~ .nav-links { max-height: 400px; }
    .nav-links li { text-align: center; width: 100%; }
    .nav-links a { display: block; padding: 18px; }
    .nav-links a::after { display: none; } /* Deaktiviert den Effekt auf Smartphones */
}

/* ==========================================================
   STYLING FÜR DIE ÜBER-UNS-SEITE (ABOUT)
   ========================================================== */
.about-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 25px;
    line-height: 1.7;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.about-header .underline {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

/* Modernerer Bild-Platzhalter mit sanftem Verlauf */
.about-image-placeholder {
    background: linear-gradient(135deg, #2c3e50, #1a1a1a);
    height: 380px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border: 1px solid var(--card-border);
}

/* Schickes Grid für die Statistiken */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    text-align: center;
}

.stat-item {
    padding: 25px 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Hochwertige Highlight-Box */
.services-highlight {
    margin-top: 60px;
    padding: 35px;
    background: var(--card-bg);
    border-radius: 4px 12px 12px 4px;
    border-left: 5px solid var(--accent-color);
    border-top: 1px solid var(--card-border);
    border-right: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

@media (max-width: 768px) {
    body { padding-top: 70px; }
    .about-container { margin: 40px auto; }
    .about-grid { grid-template-columns: 1fr; gap: 35px; }
    .about-header h1 { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 15px; }
    .about-image-placeholder { height: 280px; }
}

 /* Spezifisches CSS für die Startseite */
        
        /* HEADER MIT 3,5t TRANS-PORTER HINTERGRUNDBILD */
        .hero-section {
            padding: 140px 20px;
            text-align: center;
            /* Hochwertiges Bild eines 3,5t Kastenwagens */
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75)), url('../images/background.png');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            border-bottom: 1px solid rgba(128, 128, 128, 0.1);
            color: #ffffff;
        }

        /* Im Dark Mode machen wir das Bild noch einen Hauch dunkler */
        [data-theme="dark"] .hero-section {
            background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)), url('../images/background.png');
        }

        .hero-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
        }

        .hero-section h1 span {
            color: #f39c12;
        }

        .hero-section p {
            font-size: 1.2rem;
            color: #f0f0f0;
            margin-bottom: 35px;
            line-height: 1.6;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
        }

        [data-theme="dark"] .hero-section p {
            color: #e0e0e0;
        }

        .hero-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .hero-badge {
            background: rgba(243, 156, 18, 0.2);
            color: #f39c12;
            border: 1px solid rgba(243, 156, 18, 0.4);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.95rem;
            backdrop-filter: blur(3px);
        }

        .cta-btn {
            display: inline-block;
            background: #f39c12;
            color: white;
            text-decoration: none;
            padding: 16px 32px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background 0.3s, transform 0.2s;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
        }

        .cta-btn:hover {
            background: #e67e22;
            transform: translateY(-2px);
        }

        /* Features / Vorteile Sektion */
        .features-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .section-main-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 50px;
            font-weight: bold;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: rgba(128, 128, 128, 0.03);
            border: 1px solid rgba(128, 128, 128, 0.15);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #f39c12;
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #f39c12;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .feature-card p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        [data-theme="dark"] .feature-card p {
            color: #aaa;
        }

        /* Extra Info Banner */
        .info-banner {
            background: rgba(243, 156, 18, 0.08);
            border-left: 5px solid #f39c12;
            max-width: 1160px;
            margin: 40px auto 80px auto;
            padding: 25px;
            border-radius: 0 12px 12px 0;
        }

        .info-banner p {
            margin: 0;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        @media (max-width: 768px) {
            .hero-section { padding: 100px 20px; }
            .hero-section h1 { font-size: 2.2rem; }
            .hero-section p { font-size: 1.1rem; }
            .features-section { margin: 50px auto; }
        }
         .services-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .services-header p {
            color: #777;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        [data-theme="dark"] .services-header p {
            color: #bbb;
        }

        /* Das Grid für die Dienstleistungen */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .service-box {
            background: rgba(128, 128, 128, 0.04);
            border: 1px solid rgba(128, 128, 128, 0.15);
            border-radius: 12px;
            padding: 40px 30px;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .service-box:hover {
            transform: translateY(-5px);
            border-color: #f39c12;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .service-icon-headline {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .service-icon {
            font-size: 2.2rem;
            color: #f39c12;
            background: rgba(243, 156, 18, 0.1);
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px;
        }

        .service-box h2 {
            font-size: 1.4rem;
            margin: 0;
            font-weight: bold;
        }

        .service-box p {
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        [data-theme="dark"] .service-box p {
            color: #aaa;
        }

        .service-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .service-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            font-size: 0.95rem;
        }

        .service-list li::before {
            content: "➔";
            position: absolute;
            left: 0;
            color: #f39c12;
        }

        .service-btn {
            display: block;
            text-align: center;
            background: transparent;
            color: #f39c12;
            border: 2px solid #f39c12;
            text-decoration: none;
            padding: 12px;
            border-radius: 6px;
            font-weight: bold;
            transition: background 0.3s, color 0.3s;
            margin-top: auto;
        }

        .service-btn:hover {
            background: #f39c12;
            color: white;
        }

        /* Unterer Info-Kasten */
        .extra-services-banner {
            background: rgba(243, 156, 18, 0.05);
            border: 1px dashed #f39c12;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
        }

        .extra-services-banner h3 {
            color: #f39c12;
            margin-top: 0;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .extra-services-banner p {
            margin: 0;
            line-height: 1.6;
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .services-header h1 { font-size: 2rem; }
            .services-grid { grid-template-columns: 1fr; }
        }
         .pricing-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .pricing-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .pricing-header p {
            color: #777;
            font-size: 1.1rem;
        }

        /* Das Grid für die 4 Pakete */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            align-items: stretch;
        }

        /* Einzelne Preiskarte */
        .price-card {
            background: rgba(128, 128, 128, 0.05);
            border: 1px solid rgba(128, 128, 128, 0.2);
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .price-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-color: #f39c12;
        }

        /* Highlight für besonders beliebte Pakete */
        .price-card.featured {
            border: 2px solid #f39c12;
            background: rgba(243, 156, 18, 0.03);
        }

        .badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #f39c12;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
        }

        .card-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .card-price {
            font-size: 2rem;
            font-weight: bold;
            color: #f39c12;
            margin-bottom: 20px;
        }

        .card-price span {
            font-size: 1rem;
            color: #777;
            font-weight: normal;
        }

        .card-features {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            text-align: left;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .card-features li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }

        /* Häkchen vor den Features */
        .card-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2ecc71;
            font-weight: bold;
        }

        .pricing-btn {
            display: inline-block;
            background: #f39c12;
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: bold;
            transition: background 0.3s;
            margin-top: auto;
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .pricing-btn:hover {
            background: #e67e22;
        }

        /* Hinweis für Wien am Ende */
        .wien-notice {
            margin-top: 50px;
            text-align: center;
            background: rgba(243, 156, 18, 0.1);
            padding: 20px;
            border-radius: 8px;
            border: 1px dashed #f39c12;
            font-weight: 500;
        }

        /* ZUSÄTZLICHE NEUE BOX FÜR LANGSTRECKEN */
        .long-distance-notice {
            margin-top: 20px;
            text-align: left;
            background: rgba(128, 128, 128, 0.05);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid rgba(128, 128, 128, 0.2);
            line-height: 1.6;
        }

        .long-distance-notice h3 {
            margin-top: 0;
            color: #f39c12;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }

        /* ==========================================================
           REPARIERTES POP-UP & FORMULAR CSS
           ========================================================== */
        .hidden {
            display: none !important;
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            display: flex;
            justify-content: center;
            align-items: flex-start;
            overflow-y: auto;
            padding: 20px;
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            box-sizing: border-box;
        }

        .modal-overlay.open {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-box {
            background: #ffffff;
            color: #333333;
            padding: 30px;
            border-radius: 12px;
            max-width: 650px;
            width: 100%;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
            position: relative;
            transform: translateY(-30px);
            transition: transform 0.3s ease;
            box-sizing: border-box;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        /* Dark Mode Anpassung für das Pop-up */
        [data-theme="dark"] .modal-box {
            background: #1e1e1e;
            color: #ffffff;
        }

        .modal-overlay.open .modal-box {
            transform: translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #777;
            z-index: 10;
        }

        .modal-close:hover {
            color: #f39c12;
        }

        .modal-box h2 {
            margin-top: 0;
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .selected-package-badge {
            display: inline-block;
            background: rgba(243, 156, 18, 0.15);
            color: #f39c12;
            padding: 6px 14px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.95rem;
            margin-bottom: 25px;
        }

        /* DAS ORIGINAL-GRID DESIGN DER KONTAKTSEITE */
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            text-align: left;
        }

        .section-title {
            grid-column: span 2;
            font-size: 1.2rem;
            font-weight: bold;
            color: #f39c12;
            border-bottom: 2px solid rgba(243, 156, 18, 0.2);
            padding-bottom: 5px;
            margin-top: 15px;
            margin-bottom: 5px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width, #zustell-section {
            grid-column: span 2;
        }

        #zustell-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group label {
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 0.9rem;
        }

        .form-group input, 
        .form-group select, 
        .form-group textarea {
            padding: 12px;
            border: 1px solid rgba(128, 128, 128, 0.3);
            border-radius: 6px;
            background: rgba(128, 128, 128, 0.05);
            color: inherit;
            font-family: inherit;
            font-size: 0.95rem;
            box-sizing: border-box;
            width: 100%;
        }

        .form-group input:focus, 
        .form-group select:focus, 
        .form-group textarea:focus {
            border-color: #f39c12;
            outline: none;
            background: rgba(243, 156, 18, 0.02);
        }

        .submit-btn {
            grid-column: span 2;
            background: #f39c12;
            color: white;
            border: none;
            padding: 14px;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.05rem;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 15px;
        }

        .submit-btn:hover {
            background: #e67e22;
        }

        @media (max-width: 600px) {
            .form-grid, #zustell-section {
                grid-template-columns: 1fr;
            }
            .section-title, .form-group.full-width, #zustell-section {
                grid-column: span 1;
            }
            .modal-box {
                padding: 20px 15px;
                margin-top: 10px;
            }
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

          .contact-container {
            max-width: 900px;
            margin: 50px auto;
            padding: 40px;
            background: rgba(128, 128, 128, 0.05);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .full-width {
            grid-column: span 2;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 15px;
        }

        label {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-color);
        }

        input, select, textarea {
            padding: 12px;
            border: 1px solid rgba(128, 128, 128, 0.3);
            border-radius: 8px;
            background: var(--bg-color);
            color: var(--text-color);
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        .section-title {
            grid-column: span 2;
            margin-top: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent-color);
            font-size: 1.2rem;
            color: var(--accent-color);
        }

        .submit-btn {
            grid-column: span 2;
            background-color: var(--accent-color);
            color: white;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s, background-color 0.3s;
            margin-top: 20px;
        }

        .submit-btn:hover {
            background-color: #d68910;
            transform: translateY(-2px);
        }

        /* Verstecken der Zustelladresse-Logik */
        #zustell-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            grid-column: span 2;
        }

        .hidden {
            display: none !important;
        }

        @media (max-width: 768px) {
            .form-grid, #zustell-section {
                grid-template-columns: 1fr;
            }
            .full-width, .section-title, .submit-btn, #zustell-section {
                grid-column: span 1;
            }
            .contact-container {
                margin: 20px;
                padding: 20px;
            }
        }

        input, select, textarea {
    -webkit-appearance: none; /* Entfernt das Standard-iOS-Design auf dem iPhone */
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

[data-theme="dark"] select,
[data-theme="dark"] input[type="date"],
[data-theme="dark"] select option {
    background-color: #222222 !important;
    color: #ffffff !important;
    -webkit-appearance: none; /* Erzwingt eigenes Design auf iOS */
    appearance: none;
}

/* Holt den kleinen Auswahlpfeil bei iOS zurück, wenn 'appearance' deaktiviert wurde */
[data-theme="dark"] select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='292.4' height='292.4'%3E%3Cpath fill='%23ffffff' d='M287 69.4a17.6 17.6 0 0 0-13-5.4H18.4c-5 0-9.3 1.8-12.9 5.4A17.6 17.6 0 0 0 0 82.2c0 5 1.8 9.3 5.4 12.9l128 127.9c3.6 3.6 7.8 5.4 12.8 5.4s9.2-1.8 12.8-5.4L287 95.1c3.6-3.6 5.4-7.8 5.4-12.9 0-5-1.8-9.3-5.4-12.8z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 10px auto !important;
    padding-right: 30px !important;
}

/* Spezifisches Styling für Dropdown-Auswahlfelder */
select {
    cursor: pointer;
    /* Fügt einen eigenen Pfeil hinzu, da 'appearance: none' den Standardpfeil entfernt */
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23AAAAAA%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095.1c3.6%203.6%205.4%207.8%205.4%2012.8%200-5-1.8-9.3-5.4-12.9z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 12px auto;
    padding-right: 40px;
}

/* Ändert den Pfeil im dunklen Modus auf weiß */
[data-theme="dark"] select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23EEEEEE%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095.1c3.6%203.6%205.4%207.8%205.4%2012.8%200-5-1.8-9.3-5.4-12.9z%22/%3E%3C/svg%3E');
}

/* WICHTIG: Erzwingt die korrekten Farben der Optionen im ausgeklappten Zustand (verhindert weiß auf weiß) */
select option {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
}

/* Optimierung für das iPhone-Datumsfeld */
input[type="date"] {
    -webkit-appearance: date-input; /* Nutzt die native iOS-Kalenderübersicht */
    -moz-appearance: textfield;
    appearance: none;
    min-height: 45px;
}

/* Macht das kleine Kalender-Icon im Dark Mode auf Desktop/Android weiß */
[data-theme="dark"] input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

        .legal-container { max-width: 800px; margin: 40px auto; padding: 0 20px; line-height: 1.6; }
        .legal-container h1 { font-size: 2rem; margin-bottom: 20px; color: var(--primary-color, #333); }
        .legal-container h2 { font-size: 1.3rem; margin-top: 30px; margin-bottom: 10px; border-left: 4px solid #f39c12; padding-left: 10px; }
        .legal-container p { margin-bottom: 15px; font-size: 1rem; }

