
        :root {
            --page-privacy-policy-primary: #2F6BFF;
            --page-privacy-policy-secondary: #6FA3FF;
            --page-privacy-policy-glow: #A5C4FF;
            --page-privacy-policy-border: #D6E2FF;
            --page-privacy-policy-button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
            --page-privacy-policy-card-bg: #FFFFFF;
            --page-privacy-policy-text-main: #1F2D3D;
            --page-privacy-policy-background: #F4F7FB;
            --page-privacy-policy-text-light: #ffffff;
            --page-privacy-policy-text-dark: #333333;
        }

        .page-privacy-policy {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--page-privacy-policy-text-dark); /* Default dark text for light body background */
            background-color: var(--page-privacy-policy-background);
            padding-bottom: 50px;
        }

        .page-privacy-policy__hero-section {
            background: var(--page-privacy-policy-background);
            padding: 60px 20px 30px;
            text-align: center;
            position: relative;
            padding-top: 10px; /* Small decorative top padding, body handles header offset */
        }

        .page-privacy-policy__hero-image-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .page-privacy-policy__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            border-radius: 12px;
        }

        .page-privacy-policy__hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .page-privacy-policy__main-title {
            font-size: clamp(2em, 4vw, 3.5em);
            color: var(--page-privacy-policy-primary);
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .page-privacy-policy__description {
            font-size: 1.15em;
            color: var(--page-privacy-policy-text-main);
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-privacy-policy__cta-button {
            display: inline-block;
            background: var(--page-privacy-policy-button-gradient);
            color: var(--page-privacy-policy-text-light);
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
            border: none;
            cursor: pointer;
            margin: 10px;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-privacy-policy__cta-button:hover {
            box-shadow: 0 6px 20px rgba(47, 107, 255, 0.45);
            transform: translateY(-2px);
        }

        .page-privacy-policy__content-section {
            max-width: 1000px;
            margin: 40px auto;
            padding: 20px;
            background-color: var(--page-privacy-policy-card-bg);
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            box-sizing: border-box;
        }

        .page-privacy-policy__content-section h2 {
            color: var(--page-privacy-policy-primary);
            font-size: 2em;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--page-privacy-policy-border);
            padding-bottom: 10px;
        }

        .page-privacy-policy__content-section h3 {
            color: var(--page-privacy-policy-text-main);
            font-size: 1.5em;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .page-privacy-policy__content-section p {
            margin-bottom: 15px;
            color: var(--page-privacy-policy-text-main);
            text-align: justify;
        }

        .page-privacy-policy__content-section ul {
            list-style: disc;
            margin-left: 25px;
            margin-bottom: 15px;
            color: var(--page-privacy-policy-text-main);
        }

        .page-privacy-policy__content-section ol {
            list-style: decimal;
            margin-left: 25px;
            margin-bottom: 15px;
            color: var(--page-privacy-policy-text-main);
        }

        .page-privacy-policy__content-section li {
            margin-bottom: 8px;
            box-sizing: border-box;
        }

        .page-privacy-policy__content-section a {
            color: var(--page-privacy-policy-primary);
            text-decoration: none;
            font-weight: 500;
        }

        .page-privacy-policy__content-section a:hover {
            text-decoration: underline;
        }

        .page-privacy-policy__faq-section {
            max-width: 1000px;
            margin: 40px auto;
            padding: 20px;
            background-color: var(--page-privacy-policy-card-bg);
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            box-sizing: border-box;
        }

        .page-privacy-policy__faq-section h2 {
            color: var(--page-privacy-policy-primary);
            font-size: 2em;
            margin-bottom: 25px;
            border-bottom: 2px solid var(--page-privacy-policy-border);
            padding-bottom: 10px;
            text-align: center;
        }

        .page-privacy-policy__faq-item {
            border: 1px solid var(--page-privacy-policy-border);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .page-privacy-policy__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: var(--page-privacy-policy-primary);
            color: var(--page-privacy-policy-text-light);
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1em;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-privacy-policy__faq-question:hover {
            background-color: var(--page-privacy-policy-secondary);
        }

        .page-privacy-policy__faq-question h3 {
            margin: 0;
            color: inherit;
            font-size: 1.1em;
            pointer-events: none; /* Prevent h3 from blocking click on parent */
        }

        .page-privacy-policy__faq-toggle {
            font-size: 1.5em;
            line-height: 1;
            pointer-events: none; /* Prevent span from blocking click on parent */
            transition: transform 0.3s ease;
        }

        .page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
            transform: rotate(45deg);
        }

        .page-privacy-policy__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            background-color: var(--page-privacy-policy-card-bg);
            color: var(--page-privacy-policy-text-main);
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

        .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
            max-height: 2000px !important; /* Use !important to ensure override */
            padding: 20px !important;
            opacity: 1;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .page-privacy-policy {
                font-size: 16px;
                line-height: 1.6;
            }

            .page-privacy-policy__hero-section {
                padding: 40px 15px 20px;
            }

            .page-privacy-policy__main-title {
                font-size: clamp(1.8em, 6vw, 2.5em);
            }

            .page-privacy-policy__description {
                font-size: 1em;
            }

            .page-privacy-policy__cta-button {
                padding: 12px 20px;
                font-size: 1em;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                margin: 10px 0;
            }

            .page-privacy-policy__content-section,
            .page-privacy-policy__faq-section {
                margin: 20px auto;
                padding: 15px;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-privacy-policy__content-section h2 {
                font-size: 1.5em;
            }

            .page-privacy-policy__content-section h3 {
                font-size: 1.2em;
            }

            .page-privacy-policy img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }

            .page-privacy-policy__hero-image-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 15px;
            }

            .page-privacy-policy__content-section ul,
            .page-privacy-policy__content-section ol {
                margin-left: 15px;
            }

            .page-privacy-policy__content-section li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
                word-break: break-word !important;
            }

            .page-privacy-policy__faq-question {
                font-size: 1em;
                padding: 12px 15px;
            }

            .page-privacy-policy__faq-question h3 {
                font-size: 1em;
            }

            .page-privacy-policy__faq-answer {
                padding: 15px !important;
            }
        }
    