        .page-header {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
            color: white;
            padding: 120px 0 60px;
            margin-bottom: 0;
        }

        .page-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .page-subtitle {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        .privacy-document {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            line-height: 1.7;
        }

        .privacy-document h2 {
            color: var(--primary-color);
            margin-top: 2rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid var(--tan-color);
            padding-bottom: 0.5rem;
        }

        .privacy-document h3 {
            color: var(--dark-blue);
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
        }

        .privacy-document ul {
            padding-left: 1.5rem;
            margin-bottom: 1rem;
        }

        .privacy-document li {
            margin-bottom: 0.5rem;
        }

        .privacy-document p {
            margin-bottom: 1rem;
            color: var(--gray-dark);
        }

        .contact-info {
            background: var(--cream-color);
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--accent-color);
        }

        .contact-info a {
            color: var(--accent-color);
            text-decoration: none;
        }

        .contact-info a:hover {
            color: var(--primary-color);
        }

        .privacy-footer {
            background: var(--tan-color);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 2rem;
            text-align: center;
        }

        .privacy-footer p {
            margin: 0;
            color: var(--primary-color);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }

            .privacy-document {
                padding: 2rem;
            }
        }