

        /* Hero Section */
        .privacy-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.61)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
    min-height: 40vh;
        }

        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Main Content Layout */
        .privacy-main {
            display: flex;
            gap: 40px;
            padding: 60px 0;
        }

        /* Sidebar Navigation */
        .privacy-sidebar {
            flex: 0 0 300px;
            position: sticky;
            top: 120px;
            height: fit-content;
            background: var(--neutral-light);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .sidebar-header {
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary);
        }

        .sidebar-header h2 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .sidebar-nav {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 10px;
        }

        .sidebar-nav a {
            display: block;
            padding: 12px 15px;
            color: var(--text);
            text-decoration: none;
            border-radius: 8px;
            transition: var(--transition);
            font-weight: 500;
            position: relative;
        }

        .sidebar-nav a:hover {
            background: rgba(0, 109, 91, 0.1);
            color: var(--primary);
        }

        .sidebar-nav a.active {
            background: rgba(0, 109, 91, 0.1);
            color: var(--primary);
            font-weight: 600;
        }

        .sidebar-nav a.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            border-radius: 0 4px 4px 0;
        }

        /* Content Area */
        .privacy-content {
            flex: 1;
        }

        .content-section {
            margin-bottom: 60px;
            scroll-margin-top: 100px;
        }

        .content-section h2 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--neutral-light);
        }

        .content-section h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            font-size: 1.5rem;
            margin: 25px 0 15px;
            font-weight: 600;
        }

        .content-section p {
            margin-bottom: 15px;
            color: #555;
        }

        .content-section ul, .content-section ol {
            margin: 15px 0 15px 30px;
        }

        .content-section li {
            margin-bottom: 10px;
            color: #555;
        }

        .highlight-box {
            background: var(--neutral-light);
            border-left: 4px solid var(--primary);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        .info-table th {
            background: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .info-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }

        .info-table tr:last-child td {
            border-bottom: none;
        }

        .info-table tr:nth-child(even) {
            background: #f9f9f9;
        }

        .last-updated {
            background: var(--neutral-light);
            padding: 20px;
            border-radius: 10px;
            margin-top: 40px;
            text-align: center;
            font-style: italic;
            color: #666;
        }

 

        /* Responsive Design */
        @media (max-width: 992px) {
            .privacy-main {
                flex-direction: column;
            }
            
            .privacy-sidebar {
                position: static;
                flex: none;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {


            .hero-content h1 {
                font-size: 2.2rem;
            }


            .content-section h2 {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .content-section h2 {
                font-size: 1.5rem;
            }

            .content-section h3 {
                font-size: 1.3rem;
            }

            .privacy-sidebar {
                padding: 20px;
            }
        }