  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --light:         #f5f7fb;
            --navy:          #0d1b2a;
            --navy-mid:      #212d45;
            --navy-light:    #1c3250;
            --accent:        #ffc03d;
            --accent-dim:    #c4a01e;
            --white:         #ffffff;
            --text-muted:    #64748b;
            --text-body:     #334155;
            --border-light:  #e5e7eb;
            --border-dark:   rgba(255,255,255,0.07);
            --radius:        8px;
            --font:          'Open Sans', sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font);
            font-size: 18px;
            background: var(--light);
            color: var(--text-body);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        a { color: inherit; text-decoration: none; }

        /* ── HEADER ──────────────────────────────────────────── */
        header {
            top: 0;
            z-index: 1000;
            background: transparent;
            border-bottom: 1px solid #e5e7eb;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            padding: 0 20px;
        }

        .logo img { height: 44px; width: auto; display: block; }

        nav { display: flex; align-items: center; gap: 4px; }

        nav a {
            font-size: 15px;
            font-weight: 600;
            color: #0d1b2a;
            padding: 10px 16px;
            border-radius: 8px;
            transition: all 0.25s ease;
        }

        nav a:hover { background: #f3f4f6; }

        nav a.active {
            background: #0d1b2a;
            color: #ffffff;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(13,27,42,0.18);
        }

        .nav-dropdown { position: relative; }

        .nav-dropdown > a { display: flex; align-items: center; gap: 7px; }

        .nav-dropdown > a::after {
            content: '';
            width: 6px; height: 6px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg);
            transition: transform 0.25s ease;
            margin-top: -3px;
        }

        .nav-dropdown:hover > a::after { transform: rotate(-135deg); }

        .nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

        .dropdown-menu {
            z-index: 999;
            position: absolute;
            top: 100%; left: 0;
            min-width: 260px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 8px;
            opacity: 0; visibility: hidden;
            transform: translateY(10px);
            transition: all 0.25s ease;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
        }

        .dropdown-menu a {
            display: block;
            padding: 12px 14px;
            border-radius: 8px;
            color: #334155;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .dropdown-menu a:hover { background: #f3f4f6; color: #0d1b2a; padding-left: 18px; }

        .mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
        .mobile-toggle span { width: 24px; height: 2px; background: #0d1b2a; border-radius: 999px; }

        @media (max-width: 992px) { nav { display: none; } .mobile-toggle { display: flex; } }



.cookie-container{
    max-width:1200px;
    margin:auto;
    padding:50px;
}

.cookie-header{
    margin-bottom:35px;
    border-bottom:1px solid #e5e7eb;
    padding-bottom:20px;
}

.cookie-header h1{
    font-size:42px;
    color:#0f172a;
    margin-bottom:10px;
    line-height:1.2;
}

.cookie-date{
    color:#64748b;
    font-size:15px;
}

.cookie-content h2{
    font-size:28px;
    margin-top:40px;
    margin-bottom:18px;
    color:#111827;
}

.cookie-content p{
    font-size:17px;
    line-height:1.9;
    color:#475569;
    margin-bottom:20px;
}

.cookie-content ul{
    margin:20px 0 25px 22px;
}

.cookie-content ul li{
    font-size:17px;
    line-height:1.8;
    color:#475569;
    margin-bottom:10px;
}

.cookie-content a{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
}

.cookie-content a:hover{
    text-decoration:underline;
}

@media(max-width:768px){

    .cookie-container{
        padding:30px 22px;
    }

    .cookie-header h1{
        font-size:32px;
    }

    .cookie-content h2{
        font-size:24px;
    }

    .cookie-content p,
    .cookie-content ul li{
        font-size:16px;
    }
}
.cookie-content h3{
    font-size:22px;
    margin-top:28px;
    margin-bottom:14px;
    color:#1e293b;
}

.cookie-content ol{
    margin:18px 0 22px 24px;
}

.cookie-content ol li{
    font-size:16px;
    line-height:1.8;
    color:#475569;
    margin-bottom:10px;
}

.browser-box{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    padding:28px;
    border-radius:14px;
    margin-top:30px;
}

     /* ── FOOTER ──────────────────────────────────────────── */
        footer { background: var(--navy-mid); border-top: 1px solid var(--border-dark); }

        .footer-inner { max-width: 1200px; margin: 0 auto; padding: 62px 36px 38px; }

        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr;
            gap: 52px;
            padding-bottom: 52px;
            border-bottom: 1px solid var(--border-dark);
        }

        .footer-brand .logo { margin-bottom: 18px; display: block; }

        .footer-brand p { font-size: 0.975rem; color: #8a9bb0; line-height: 1.8; max-width: 280px; }

        .footer-col h4 {
            font-size: 1rem;
            font-weight: 400;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 18px;
        }

        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

        .footer-col ul li a { font-size: 0.975rem; color: #8a9bb0; transition: color 0.2s; }
        .footer-col ul li a:hover { color: var(--white); }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 30px;
        }

        .footer-copy { font-size: 0.92rem; color: #8a9bb0; }
