:root {
            --bg-page: #FFFCF7; 
            --bg-hero: #EBF4F6; 
            --text-main: #2C3E50; 
            --text-light: #546E7A;
            --primary: #FF8A65; 
            --secondary: #4DB6AC; 
            --card-bg: #FFFFFF;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth;  }

        body {
            font-family: 'Quicksand', sans-serif; background-color: var(--bg-page);
            color: var(--text-main); line-height: 1.6; font-size: 18px; 
        }

        h1, h2, h3, h4 { font-weight: 700; color: var(--text-main); }
        
        .reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- HEADER --- */
        header {
            display: flex; justify-content: space-between; align-items: center;
            padding: 1.2rem 5%; background-color: var(--bg-hero);
            position: sticky; top: 0; z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            animation: slideDown 0.8s ease-out forwards;
        }
        @keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

        .logo { font-size: 1.6rem; font-weight: 700; color: var(--text-main); text-decoration: none; display: flex; align-items: center; gap: 10px; }
        .logo i { color: var(--primary); font-size: 1.8rem; animation: heartbeat 2s infinite; }
        @keyframes heartbeat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.15); } }

        nav { display: flex; gap: 2rem; align-items: center; }
        nav a { text-decoration: none; color: var(--text-main); font-weight: 600; transition: color 0.2s; font-size: 1.1rem; }
        nav a:hover { color: var(--primary); }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            padding: 0.8rem 2rem; border-radius: 50px;
            font-weight: 700; font-size: 1.1rem; cursor: pointer;
            text-decoration: none; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        .btn-primary { background-color: var(--primary); color: #fff; }
        .btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 20px rgba(255, 138, 101, 0.4); }
        .btn-secondary { background-color: #fff; color: var(--text-main); }
        .btn-secondary:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.1); color: var(--primary); }

        /* --- HERO BEREICH --- */
        .sub-hero { background-color: var(--bg-hero); padding: 4rem 5% 3rem; text-align: center; border-bottom: 2px solid rgba(77, 182, 172, 0.1); }
        .sub-hero h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
        .sub-hero p { color: var(--text-light); font-size: 1.1rem; }

        /* --- CONTENT BEREICH --- */
        .legal-content {
            max-width: 900px; margin: 4rem auto 6rem; padding: 3.5rem;
            background: #fff; border-radius: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.05);
        }
        .legal-content h2 { font-size: 1.6rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--secondary); border-bottom: 2px solid var(--bg-hero); padding-bottom: 0.5rem; }
        .legal-content h3 { font-size: 1.3rem; margin-top: 1.8rem; margin-bottom: 0.8rem; color: var(--text-main); }
        .legal-content h2:first-child { margin-top: 0; }
        .legal-content p { margin-bottom: 1.2rem; color: var(--text-light); text-align: justify; }
        .legal-content ul { margin-bottom: 1.5rem; padding-left: 1.5rem; color: var(--text-light); }
        .legal-content li { margin-bottom: 0.5rem; text-align: justify; }
        .legal-content strong { color: var(--text-main); }

        /* --- FOOTER --- */
        
        .footer-logo { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 10px; }
        .footer-logo i { color: var(--primary); }
        .legal-links { display: flex; justify-content: center; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
        .legal-links a { color: var(--text-light); text-decoration: none; font-size: 0.95rem; font-weight: 600; }
        .footer-bottom { color: #90A4AE; font-size: 0.9rem; margin-top: 2rem; }

        @media (max-width: 768px) {
            .legal-content { padding: 2rem 1.5rem; margin: 2rem 5% 4rem; width: 90%; }
        }
    
                /* --- H1 ANIMATION --- */
                @keyframes superTitleAnim {
                    0% { opacity: 0; transform: translateY(40px) scale(0.95); }
                    60% { opacity: 1; transform: translateY(-5px) scale(1.02); }
                    100% { opacity: 1; transform: translateY(0) scale(1); }
                }
                .hero h1, .sub-hero h1 {
                    animation: superTitleAnim 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
                    animation-delay: 0.1s;
                    opacity: 0;
                    display: block;
                }
                

/* --- MOBILE NAVIGATION FIX --- */
@media (max-width: 768px) {
    
}


/* --- BURGER MENU CSS --- */
.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
}
@media (max-width: 768px) {
    .mobile-menu-btn { display: block !important; }
    .header-phone-btn { display: none !important; }
    nav {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        gap: 1.5rem;
        padding: 0;
        z-index: 999;
    }
    nav.open {
        max-height: 400px;
        padding: 2rem 0;
    }
    nav a { text-align: center; font-size: 1.2rem; display: block; width: 100%; }
}


/* --- WACKEL-FIX FÜR HANDYS (HORIZONTAL SCROLLING) --- */



/* --- BILD-LOGO ANIMATION --- */
.logo-icon {
    animation: heartbeat 2s infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}


/* --- SOCIALS IN NAV --- */
.nav-socials a:hover i {
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .nav-socials {
        justify-content: center;
        margin-left: 0 !important;
        padding-left: 0 !important;
        margin-top: 0.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        border-left: none !important;
    }
    .nav-socials a {
        display: inline-flex !important;
        width: auto !important;
        justify-content: center;
    }
}


/* --- FLOATING SOCIALS (SIDEBAR) --- */
.floating-socials {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.08);
    border-radius: 0 20px 20px 0;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    border-left: none;
}
.floating-socials a {
    padding: 15px 18px;
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.floating-socials a:last-child { border-bottom: none; }
.floating-socials a:hover.social-ig { color: #E1306C; background: #fff4f7; padding-left: 25px; }
.floating-socials a:hover.social-tt { color: #000; background: #f2f2f2; padding-left: 25px; }
.floating-socials a:hover.social-fb { color: #1877F2; background: #f0f5ff; padding-left: 25px; }

.mobile-only-socials { display: none; }

@media (max-width: 768px) {
    .floating-socials { display: none !important; }
    .mobile-only-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid #eee;
        width: 100%;
        flex-direction: row;
    }
    .mobile-only-socials a { font-size: 2rem; display: inline-block; width: auto; }
}