        /* Updated CSS to use Lead With Skills brand colors and Inter font */
        :root {
            /* Updated color palette to remove yellow and match Lead With Skills.in */
            --background: #ffffff;
            --foreground: #111827;
            --card: #f9fafb;
            --card-foreground: #111827;
            --primary: #00353b;
            --primary-foreground: #ffffff;
            --secondary: #00353b;
            --secondary-foreground: #ffffff;
            --muted: #6b7280;
            --accent: #00353b;
            --border: #e5e7eb;
            --Primary-25: #f0f8ed;
            --Primary-100: #c6f6d5;
            --Primary-600: #158e5e;
            --radius: 0.5rem;
        }

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

        body {
            /* Simplified font stack using only Inter */
            font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--foreground);
            background: var(--background);
            font-weight: 400;
            overflow-x: hidden;
        }

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

        /* Simplified header with less bulk */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            /* Set header height to exactly 85px */
            height: 85px;
            /* Add flex properties to center content vertically */
            display: flex;
            align-items: center;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /* Remove padding and use full width to center items properly */
            padding: 0;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo img {
            font-family: "Inter", sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--primary);
            letter-spacing: -0.02em;
            width: 176px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--muted);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s ease;
        }

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

        .cta-button {
            background: var(--primary);
            color: var(--primary-foreground);
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .cta-button:hover {
            background: var(--Primary-600);
            transform: translateY(-1px);
        }

        /* Main content */
        main {
            padding-top: 85px;
        }

        /* Privacy Policy Hero */
        .privacy-hero {
            padding: 120px 0 100px;
            background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .privacy-hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2315803d' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
                repeat;
            z-index: 1;
        }

        .privacy-hero .container {
            position: relative;
            z-index: 2;
        }

        .privacy-hero h1 {
            font-size: clamp(42px, 5vw, 56px);
            font-weight: 700;
            line-height: 1.1;
            color: #111827;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .privacy-hero p {
            font-size: 20px;
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 40px;
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Privacy Policy Content */
        .privacy-content {
            background: var(--background);
            margin: -2rem auto 4rem;
            max-width: 900px;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            padding: 60px;
            border: 1px solid var(--border);
        }

        .last-updated {
            background: var(--Primary-25);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 40px;
            border-left: 4px solid var(--primary);
            font-weight: 500;
        }

        .privacy-section {
            margin-bottom: 40px;
        }

        .privacy-section h2 {
            color: var(--foreground);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
            line-height: 1.2;
        }

        .privacy-section h3 {
            color: var(--primary);
            font-size: 20px;
            font-weight: 600;
            margin: 24px 0 16px;
            line-height: 1.3;
        }

        .privacy-section p {
            margin-bottom: 16px;
            color: var(--muted);
            line-height: 1.7;
            font-size: 16px;
        }

        .privacy-section ul {
            margin: 16px 0;
            padding-left: 24px;
        }

        .privacy-section li {
            margin-bottom: 8px;
            color: var(--muted);
            line-height: 1.6;
            font-size: 16px;
        }

        .privacy-section li strong {
            color: var(--foreground);
            font-weight: 600;
        }

        .contact-info {
            background: var(--card);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .contact-info h3 {
            color: var(--foreground);
            margin-bottom: 20px;
            font-size: 24px;
            font-weight: 600;
        }

        .contact-info p {
            margin-bottom: 12px;
            font-size: 16px;
        }

        .contact-info a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: var(--primary-foreground);
            padding: 60px 0 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-family: "Inter", sans-serif;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary-foreground);
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            font-size: 14px;
            font-weight: 400;
            transition: color 0.2s ease;
        }

        .footer-section a:hover {
            color: var(--primary-foreground);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 16px;
            }

            .nav-links {
                display: none;
            }
            
            .privacy-hero {
                padding: 100px 0 80px;
            }

            .privacy-hero h1 {
                font-size: 36px;
            }

            .privacy-hero p {
                font-size: 18px;
            }
            
            .privacy-content {
                margin: -1rem 1rem 2rem;
                padding: 40px 24px;
            }

            .privacy-section h2 {
                font-size: 24px;
            }

            .privacy-section h3 {
                font-size: 18px;
            }

            .contact-info {
                padding: 24px;
            }

            .contact-info h3 {
                font-size: 20px;
            }
        }
