.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #0d0d0d; /* Inherited from body, but good to reinforce */
}

.page-privacy-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section - Not the homepage HERO, but an introductory section */
.page-privacy-policy__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background-color: #0d0d0d; /* Matches body background */
    padding-top: var(--header-offset, 120px); /* Assuming shared does NOT set body padding-top */
}

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

.page-privacy-policy__hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-privacy-policy__hero-description {
    font-size: 18px;
    color: #f0f0f0; /* Slightly off-white for description */
    margin-bottom: 30px;
}

/* Content Section */
.page-privacy-policy__content-section {
    padding: 60px 0;
    background-color: #0d0d0d; /* Dark background for content */
}

.page-privacy-policy__heading {
    font-size: 32px;
    font-weight: bold;
    color: #FFD700; /* Gold for main headings */
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8B0000; /* Red underline */
}

.page-privacy-policy__sub-heading {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700; /* Gold for sub-headings */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ffffff; /* White text for paragraphs */
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #ffffff; /* White text for lists */
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 16px;
    color: #ffffff;
}

.page-privacy-policy__list-item strong {
    color: #FFD700; /* Highlight important terms in gold */
}

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Call to Action Button */
.page-privacy-policy__cta-buttons {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(90deg, #FFD700, #FFA500); /* Gold gradient */
    color: #0d0d0d; /* Dark text for gold button */
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-privacy-policy__btn-primary:hover {
    background: linear-gradient(90deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    padding: 60px 0;
    background-color: #0d0d0d; /* Dark background */
}

.page-privacy-policy__faq-list {
    margin-top: 30px;
}

.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: #1a1a1a; /* Slightly lighter dark background for FAQ item */
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #2a2a2a; /* Darker background for question */
    border: 1px solid #3a3a3a;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-privacy-policy__faq-question:hover {
    background: #3a3a3a;
    border-color: #4a4a4a;
}

.page-privacy-policy__faq-question:active {
    background: #4a4a4a;
}

.page-privacy-policy__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #FFD700; /* Gold for FAQ question titles */
    pointer-events: none; /* Prevent h3 from blocking click */
}

.page-privacy-policy__faq-toggle {
    font-size: 28px; /* Increased size for visibility */
    font-weight: bold;
    line-height: 1;
    color: #FFD700; /* Gold for toggle icon */
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none; /* Prevent icon from blocking click */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; /* Increased size */
    height: 32px; /* Increased size */
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
    color: #ffffff; /* White when active */
    transform: rotate(45deg); /* Example: rotate to form an 'X' or just change to '-' */
}

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 20px;
    opacity: 0;
    color: #f0f0f0; /* Slightly off-white for answer text */
    font-size: 15px;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 2000px !important; /* Sufficiently large to contain content */
    padding: 20px !important;
    opacity: 1;
    background-color: #1a1a1a; /* Matches item background */
    border-radius: 0 0 5px 5px;
}

/* General image responsive styles */
.page-privacy-policy img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* General button responsive styles */
.page-privacy-policy__cta-button,
.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary,
.page-privacy-policy a[class*="button"],
.page-privacy-policy a[class*="btn"] {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__cta-buttons,
.page-privacy-policy__button-group,
.page-privacy-policy__btn-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}


/* --- Mobile Responsive Styles --- */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-title {
        font-size: 40px;
    }

    .page-privacy-policy__hero-description {
        font-size: 16px;
    }

    .page-privacy-policy__heading {
        font-size: 28px;
    }

    .page-privacy-policy__sub-heading {
        font-size: 22px;
    }

    .page-privacy-policy__btn-primary {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-privacy-policy__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 100px) !important; /* Adjust for mobile header offset */
    }

    .page-privacy-policy__hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__hero-description {
        font-size: 15px;
    }

    /* Content Section */
    .page-privacy-policy__content-section {
        padding: 40px 0;
    }

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

    .page-privacy-policy__heading {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__sub-heading {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 15px;
    }

    /* General Images */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Ensure content containers don't cause overflow */
    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__box {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }


    /* Buttons */
    .page-privacy-policy__cta-button,
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary,
    .page-privacy-policy a[class*="button"],
    .page-privacy-policy a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-privacy-policy__cta-buttons,
    .page-privacy-policy__button-group,
    .page-privacy-policy__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex; /* Ensure flex context for wrap */
        flex-direction: column; /* Stack buttons vertically on mobile */
    }

    /* FAQ Section */
    .page-privacy-policy__faq-section {
        padding: 40px 0;
    }

    .page-privacy-policy__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-privacy-policy__faq-question h3 {
        font-size: 16px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-privacy-policy__faq-toggle {
        margin-left: 10px;
        width: 28px;
        height: 28px;
        font-size: 24px;
    }
    
    .page-privacy-policy__faq-answer {
        padding: 0 15px;
    }
    
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 15px !important;
    }
}