:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-soft: #eff6ff;
            --heading: #111827;
            --text: #374151;
            --muted: #6b7280;
            --background: #f6f8fb;
            --surface: #ffffff;
            --border: #e5e7eb;
            --green: #047857;
            --green-soft: #ecfdf5;
            --shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            color: var(--text);
            background: var(--background);
            line-height: 1.7;
        }

        img {
            max-width: 100%;
        }

        a {
            color: var(--primary);
            text-decoration: none;
        }

        a:hover {
            color: var(--primary-dark);
        }

        /* Navigation */

        .site-nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 82px;
            padding: 10px 40px;
            background: rgba(255, 255, 255, 0.96);
            border-bottom: 1px solid var(--border);
            backdrop-filter: blur(12px);
        }

        .nav-brand {
            display: flex;
            align-items: center;
            width: 220px;
            height: 60px;
            overflow: hidden;
        }

        .nav-brand img {
            display: block;
            width: 210px;
            height: 60px;
            object-fit: contain;
            object-position: left center;
            transform: scale(2.8);
            transform-origin: left center;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            min-height: 58px;
            color: var(--text);
            font-weight: 600;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        .dropdown-link {
            gap: 6px;
        }

        .dropdown-arrow {
            font-size: 10px;
            transition: transform 0.2s ease;
        }

        .dropdown:hover .dropdown-arrow,
        .dropdown:focus-within .dropdown-arrow {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: -14px;
            z-index: 1100;
            display: none;
            min-width: 210px;
            margin: 0;
            padding: 8px;
            list-style: none;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            box-shadow: 0 16px 40px rgba(17, 24, 39, 0.14);
        }

        .dropdown::after {
            position: absolute;
            top: 100%;
            left: -14px;
            width: 210px;
            height: 10px;
            content: "";
        }

        .dropdown-menu a {
            display: block;
            min-height: auto;
            padding: 11px 13px;
            border-radius: 8px;
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            color: var(--primary);
            background: var(--primary-soft);
        }

        .dropdown:hover .dropdown-menu,
        .dropdown:focus-within .dropdown-menu {
            display: block;
        }

        .menu-toggle {
            display: none;
            padding: 8px 12px;
            color: var(--heading);
            background: transparent;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 24px;
            line-height: 1;
            cursor: pointer;
        }

        /* Hero */

        .privacy-hero {
            padding: 92px 20px 80px;
            text-align: center;
            background:
                radial-gradient(
                    circle at 14% 20%,
                    rgba(37, 99, 235, 0.14),
                    transparent 31%
                ),
                radial-gradient(
                    circle at 88% 78%,
                    rgba(99, 102, 241, 0.09),
                    transparent 33%
                ),
                var(--surface);
            border-bottom: 1px solid var(--border);
        }

        .eyebrow {
            display: inline-flex;
            margin-bottom: 20px;
            padding: 8px 14px;
            color: var(--primary-dark);
            background: #dbeafe;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 700;
        }

        .privacy-hero h1 {
            margin: 0 0 18px;
            color: var(--heading);
            font-size: clamp(42px, 7vw, 64px);
            line-height: 1.06;
            letter-spacing: -2px;
        }

        .privacy-hero p {
            max-width: 720px;
            margin: 0 auto;
            color: var(--muted);
            font-size: 19px;
        }

        .last-updated {
            display: inline-block;
            margin-top: 22px;
            color: var(--muted);
            font-size: 14px;
        }

        /* Privacy layout */

        .privacy-section {
            padding: 75px 20px 95px;
        }

        .privacy-layout {
            display: grid;
            grid-template-columns: 240px minmax(0, 1fr);
            gap: 34px;
            max-width: 1120px;
            margin: 0 auto;
        }

        .privacy-sidebar {
            position: sticky;
            top: 105px;
            align-self: start;
        }

        .sidebar-card {
            padding: 22px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 15px;
            box-shadow: 0 10px 28px rgba(17, 24, 39, 0.05);
        }

        .sidebar-card h2 {
            margin: 0 0 14px;
            color: var(--heading);
            font-size: 17px;
        }

        .sidebar-card ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .sidebar-card li + li {
            margin-top: 5px;
        }

        .sidebar-card a {
            display: block;
            padding: 8px 10px;
            color: var(--text);
            border-radius: 7px;
            font-size: 14px;
        }

        .sidebar-card a:hover {
            color: var(--primary);
            background: var(--primary-soft);
        }

        .privacy-content {
            min-width: 0;
        }

        .policy-card {
            margin-bottom: 24px;
            padding: 36px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 18px;
            box-shadow: 0 12px 34px rgba(17, 24, 39, 0.05);
            scroll-margin-top: 105px;
        }

        .policy-card:last-child {
            margin-bottom: 0;
        }

        .policy-card h2 {
            margin: 0 0 17px;
            color: var(--heading);
            font-size: 27px;
            line-height: 1.25;
        }

        .policy-card h3 {
            margin: 28px 0 8px;
            color: var(--heading);
            font-size: 19px;
        }

        .policy-card p {
            margin: 0 0 16px;
        }

        .policy-card p:last-child {
            margin-bottom: 0;
        }

        .policy-card ul {
            margin: 14px 0 0;
            padding-left: 24px;
        }

        .policy-card li {
            margin-bottom: 10px;
        }

        .policy-card li:last-child {
            margin-bottom: 0;
        }

        .notice {
            margin-top: 22px;
            padding: 18px 20px;
            background: var(--primary-soft);
            border-left: 4px solid var(--primary);
            border-radius: 9px;
        }

        .notice strong {
            color: var(--heading);
        }

        .privacy-summary {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 17px;
            margin-bottom: 30px;
        }

        .summary-card {
            padding: 21px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 15px;
        }

        .summary-card span {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            margin-bottom: 14px;
            color: var(--primary);
            background: #dbeafe;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 800;
        }

        .summary-card h2 {
            margin: 0 0 8px;
            color: var(--heading);
            font-size: 18px;
        }

        .summary-card p {
            margin: 0;
            color: var(--muted);
            font-size: 14px;
        }

        .contact-box {
            padding: 25px;
            color: #ffffff;
            background: linear-gradient(
                135deg,
                #111827,
                #1e3a8a
            );
            border-radius: 15px;
        }

        .contact-box h3 {
            margin: 0 0 10px;
            color: #ffffff;
        }

        .contact-box p {
            margin: 0 0 14px;
            color: #dbeafe;
        }

        .contact-box a {
            color: #ffffff;
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* Footer */

        .site-footer {
            padding: 52px 20px;
            color: #d1d5db;
            background: var(--heading);
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr 0.8fr;
            gap: 45px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .footer-brand strong {
            display: block;
            margin-bottom: 10px;
            color: #ffffff;
            font-size: 20px;
        }

        .footer-brand p {
            max-width: 430px;
            margin: 0;
            color: #9ca3af;
        }

        .footer-column h3 {
            margin: 0 0 14px;
            color: #ffffff;
            font-size: 15px;
        }

        .footer-column a {
            display: block;
            margin-bottom: 9px;
            color: #d1d5db;
        }

        .footer-column a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            max-width: 1100px;
            margin: 40px auto 0;
            padding-top: 24px;
            color: #9ca3af;
            border-top: 1px solid #374151;
            font-size: 14px;
        }

        /* Responsive */

        @media (max-width: 900px) {
            .privacy-layout {
                grid-template-columns: 1fr;
            }

            .privacy-sidebar {
                position: static;
            }

            .sidebar-card ul {
                display: flex;
                flex-wrap: wrap;
                gap: 6px;
            }

            .sidebar-card li + li {
                margin-top: 0;
            }

            .privacy-summary {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 800px) {
            .site-nav {
                flex-wrap: wrap;
                padding: 10px 20px;
            }

            .nav-brand {
                width: 180px;
                height: 55px;
            }

            .nav-brand img {
                width: 175px;
                height: 55px;
            }

            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding-top: 14px;
            }

            .nav-links.open {
                display: flex;
            }

            .nav-links > li {
                width: 100%;
            }

            .nav-links > li > a {
                width: 100%;
                min-height: auto;
                padding: 12px 0;
            }

            .dropdown-menu {
                position: static;
                display: block;
                width: 100%;
                min-width: 0;
                margin: 0 0 8px 14px;
                padding: 0 0 0 14px;
                background: transparent;
                border: 0;
                border-left: 2px solid var(--border);
                border-radius: 0;
                box-shadow: none;
            }

            .dropdown::after {
                display: none;
            }

            .dropdown-menu a {
                padding: 9px 0;
            }

            .dropdown-arrow {
                display: none;
            }

            .footer-inner {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 650px) {
            .privacy-hero {
                padding: 66px 20px 60px;
            }

            .privacy-hero h1 {
                letter-spacing: -1px;
            }

            .privacy-section {
                padding: 48px 14px 68px;
            }

            .policy-card {
                padding: 26px 21px;
            }

            .policy-card h2 {
                font-size: 24px;
            }
        }

/* WordPress menu integration */
.nav-links .sub-menu{position:absolute;top:100%;left:-14px;z-index:1100;display:none;min-width:210px;margin:0;padding:8px;list-style:none;background:var(--surface,#fff);border:1px solid var(--border,#e5e7eb);border-radius:12px;box-shadow:0 16px 40px rgba(17,24,39,.14)}
.nav-links .menu-item-has-children:hover>.sub-menu,.nav-links .menu-item-has-children:focus-within>.sub-menu{display:block}
.nav-links .sub-menu a{display:block;min-height:auto;padding:11px 13px;border-radius:8px;white-space:nowrap}
.footer-menu{margin:0;padding:0;list-style:none}.footer-menu li{margin:0}.footer-menu a{display:block;margin-bottom:9px}
.custom-logo-link{display:flex;align-items:center;height:60px;overflow:hidden}.custom-logo{display:block;height:60px;object-fit:contain;object-position:left center;transform:none!important}
@media(max-width:800px){.nav-links .sub-menu{position:static;display:block;width:100%;min-width:0;margin:0 0 8px 14px;padding:0 0 0 14px;background:transparent;border:0;border-left:2px solid var(--border,#e5e7eb);border-radius:0;box-shadow:none}.nav-links .sub-menu a{padding:9px 0}}
