﻿h1, h2, h3 {
            font-family: var(--font-display);
            font-weight: 700;
            line-height: 1.1;
            color: var(--petrol-dark);
            text-align: center;
        }

        h1 { 
            font-size: clamp(2.75rem, 5vw, 4rem); 
            margin-bottom: var(--space-lg);
            animation: floatUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
            text-align: center;
        }

        h2 { 
            font-size: clamp(1.5rem, 3.5vw, 2.25rem); 
            margin-bottom: var(--space-md);
            margin-top: var(--space-xl);
            animation: floatUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        h3 { 
            font-size: 1.5rem; 
            margin-bottom: var(--space-sm);
        }

        .lead {
            font-size: 1.125rem;
            line-height: 1.6;
            color: var(--gray);
            max-width: 42rem;
            margin: 0 auto;
        }

        .section-lead {
            font-size: 1.25rem;
            line-height: 1.7;
            color: var(--gray);
            max-width: 48rem;
            margin: 0 auto;
            text-align: center;
            animation: floatUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--space-md);
        }

        .section {
            padding: var(--space-3xl) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-2xl);
        }

        /* ===== NAVIGATION - ADJUSTED FOR BETTER SPACING ===== */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(230, 230, 230, 0.5);
            z-index: 1000;
            padding: var(--space-sm) 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .navbar.scrolled {
            padding: var(--space-xs) 0;
            box-shadow: var(--shadow-subtle);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--space-md);
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: var(--space-3xs);
            text-decoration: none;
            flex-shrink: 0;
            animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        /* BIGGER LOGO SIZE */
        .logo-image {
            display: block;
            height: 44px; /* Increased from 40px */
            width: auto;
            transition: all 0.3s ease;
        }

        /* BIGGER LOGO TEXT */
        .logo-text {
            font-family: var(--font-display);
            font-size: 1.125rem; /* Increased from 1rem */
            font-weight: 700;
            color: var(--petrol);
            white-space: nowrap;
        }

        /* Logo hover effect */
        .logo:hover .logo-image {
            transform: scale(1.05);
            opacity: 0.9;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
            margin: 0 auto;
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            color: var(--petrol);
            position: relative;
            padding: var(--space-2xs) 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            opacity: 0;
            animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
        }

        .nav-link:nth-child(1) { animation-delay: 0.5s; }
        .nav-link:nth-child(2) { animation-delay: 0.55s; }
        .nav-link:nth-child(3) { animation-delay: 0.6s; }
        .nav-link:nth-child(4) { animation-delay: 0.65s; }
        .nav-link:nth-child(5) { animation-delay: 0.7s; }

        .nav-link:hover {
            color: var(--petrol-light);
        }

        .nav-link.active {
            color: var(--petrol-light);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--petrol);
        }

        .nav-cta {
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--white);
            background: var(--petrol);
            padding: var(--space-2xs) var(--space-sm);
            border-radius: 0;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid var(--petrol);
            letter-spacing: 0.5px;
            white-space: nowrap;
            opacity: 0;
            animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
        }

        .nav-cta:hover {
            background: transparent;
            color: var(--petrol);
            transform: translateY(-2px);
        }

                /* ===== PAGE HEADER (MATCHING SERVICES PAGE) ===== */
        .policy-hero {
            padding: 8rem 0 4rem;
            background: var(--gradient-light);
            position: relative;
            overflow: hidden;
            text-align: center;
            margin-top: 60px;
        }

        .policy-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(34, 113, 128, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(26, 89, 102, 0.08) 0%, transparent 60%);
            z-index: 1;
        }

        .policy-hero-content {
            position: relative;
            z-index: 2;
            max-width: 52rem;
            margin: 0 auto;
            text-align: center;
            padding: 0 var(--space-sm);
        }

        .policy-hero h1 {
            position: relative;
            padding-bottom: var(--space-lg);
            font-size: clamp(2.25rem, 4vw, 3.5rem);
        }

        .policy-hero-line {
            position: relative;
            height: 4px;
            width: 100px;
            margin: 0 auto var(--space-lg);
            background: transparent;
            overflow: hidden;
        }

        .policy-hero-line::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 100%;
            background: var(--gradient-petrol);
            animation: drawLine 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
        }

        .policy-hero-line::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background: var(--petrol);
            border-radius: 50%;
            opacity: 0;
            animation:
                scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.8s forwards,
                pulseGlow 2s ease-in-out 2.3s infinite;
        }

        .policy-intro {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 auto var(--space-sm);
            max-width: 42rem;
            opacity: 0;
            animation: floatUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
        }

        .policy-last-updated {
            color: var(--gray);
            font-size: 0.875rem;
            opacity: 0;
            animation: floatUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.1s both;
        }

        /* ===== CONTENT SECTIONS ===== */
        .policy-content {
            background: var(--neutral-10);
            padding-top: 0;
        }

        .policy-content .container {
            max-width: 1000px;
        }

        .policy-section {
            background: var(--white);
            border: 1px solid var(--neutral-20);
            padding: var(--space-xl);
            margin-bottom: var(--space-xl);
            color: var(--gray);
            transition: all 0.3s ease;
        }

        .policy-section:hover {
            border-color: var(--petrol);
            box-shadow: var(--shadow-subtle);
            transform: translateY(-4px);
        }

        .policy-section h2,
        .policy-section h3,
        .policy-section h4 {
            text-align: left;
            animation: none;
        }

        .policy-section h2 {
            font-size: clamp(1.5rem, 3vw, 2.125rem);
            margin-top: 0;
        }

        .policy-section h3 {
            font-size: 1.375rem;
            margin-top: var(--space-lg);
        }

        .policy-section h4 {
            color: var(--petrol-dark);
            margin-bottom: var(--space-sm);
            font-family: var(--font-display);
            font-size: 1.1rem;
        }

        .policy-section p {
            margin-bottom: var(--space-md);
            line-height: 1.8;
        }

        .policy-section ul,
        .policy-section ol {
            margin-left: var(--space-lg);
            margin-bottom: var(--space-md);
        }

        .policy-section li {
            margin-bottom: var(--space-sm);
            line-height: 1.8;
        }

        .policy-section a {
            color: var(--petrol);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .policy-section a:hover {
            color: var(--petrol-light);
            text-decoration: underline;
        }

        .highlight-box {
            background: var(--neutral-10);
            border-left: 4px solid var(--petrol);
            padding: var(--space-lg);
            margin: var(--space-lg) 0;
            border-radius: 2px;
        }

        .highlight-box p {
            margin-bottom: 0;
        }

        .highlight-box strong {
            color: var(--petrol-dark);
        }

        .consent-section {
            background: var(--white);
            border: 1px solid var(--neutral-20);
            padding: var(--space-lg);
            margin: var(--space-md) 0;
            transition: all 0.3s ease;
        }

        .consent-section:hover {
            border-color: var(--petrol);
            box-shadow: var(--shadow-subtle);
        }

        /* ===== TABLE OF CONTENTS ===== */
        .toc {
            background: var(--white);
            border: 1px solid var(--neutral-20);
            padding: var(--space-lg);
            margin-bottom: var(--space-xl);
            transition: all 0.3s ease;
        }

        .toc:hover {
            border-color: var(--petrol);
            box-shadow: var(--shadow-subtle);
        }

        .toc h3 {
            margin-top: 0;
            margin-bottom: var(--space-md);
            text-align: left;
        }

        .toc ul {
            list-style: none;
            margin-left: 0;
        }

        .toc li {
            margin-bottom: var(--space-sm);
        }

        .toc a {
            color: var(--petrol);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .toc a:hover {
            color: var(--petrol-light);
            text-decoration: underline;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--petrol-dark);
            color: white;
            padding: var(--space-xl) 0;
            text-align: center;
        }

        .footer-content {
            max-width: 36rem;
            margin: 0 auto;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: var(--space-sm);
            color: white;
            text-decoration: none;
            display: inline-block;
        }

        .footer-tagline {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: var(--space-lg);
            font-size: 1rem;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: var(--space-sm);
            margin-bottom: var(--space-lg);
        }

        .footer-email {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-email:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: var(--space-lg);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            :root {
                --space-xl: 3rem;
                --space-2xl: 4rem;
                --space-3xl: 5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
                background: none;
                border: none;
                color: var(--petrol);
                font-size: 1.5rem;
                cursor: pointer;
                padding: var(--space-2xs);
            }

            .policy-hero {
                padding: 6rem 0 3rem;
                margin-top: 60px;
            }

            .logo-image {
                height: 36px;
            }
            
            .logo-text {
                font-size: 1rem;
            }

            .policy-section {
                padding: var(--space-lg);
            }

            .policy-section h2 {
                font-size: clamp(1.35rem, 6vw, 1.8rem);
            }
        }

        @media (min-width: 769px) {
            .mobile-menu-btn {
                display: none;
            }
        }
