.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Ensure consistency with body background */
}

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

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't spill */
    padding-top: var(--header-offset, 120px);
    background-color: #017439; /* Brand color for hero */
}

.page-privacy-policy__hero-section .page-privacy-policy__container {
    position: relative;
    z-index: 1;
}

.page-privacy-policy__main-title {
    font-size: 3.5em;
    color: #FFFF00; /* Login/Register font color for prominence */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-privacy-policy__intro-text {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Content Sections */
.page-privacy-policy__content-section {
    padding: 60px 0;
    background-color: #ffffff; /* Light background for content */
    color: #333333; /* Dark text for light background */
}

.page-privacy-policy__content-area {
    padding: 0;
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #017439; /* Brand color for section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.page-privacy-policy__section-title--center {
    text-align: center;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-privacy-policy__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-privacy-policy__link {
    color: #017439; /* Brand color for links */
    text-decoration: underline;
}

.page-privacy-policy__link:hover {
    color: #004d26; /* Darker shade on hover */
}

/* FAQ Section */
.page-privacy-policy__faq-section {
    padding: 60px 0;
    background-color: #017439; /* Dark brand color background */
    color: #ffffff; /* White text for dark background */
}

.page-privacy-policy__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-privacy-policy__faq-item {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white for items */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease;
    color: #ffffff; /* Ensure question text is white */
}

.page-privacy-policy__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-toggle {
    transform: rotate(45deg);
}
.page-privacy-policy__faq-item.active .page-privacy-policy__faq-question .page-privacy-policy__faq-toggle {
    content: '−'; /* Change to minus sign */
}

.page-privacy-policy__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #ffffff; /* Ensure answer text is white */
}

.page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 20px 20px 20px;
}

.page-privacy-policy__faq-answer p {
    margin: 0;
    font-size: 1.05em;
}

/* Call to Action Section */
.page-privacy-policy__cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: #000000; /* Dark background */
    color: #ffffff; /* White text */
}

.page-privacy-policy__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-privacy-policy__cta-title {
    font-size: 2.5em;
    color: #FFFF00; /* Yellow for prominence */
    margin-bottom: 20px;
}

.page-privacy-policy__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    background-color: #C30808; /* Register button color */
    color: #FFFF00; /* Register button font color */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-privacy-policy__btn-primary:hover {
    background-color: #9c0606; /* Darker red on hover */
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 3em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 60px 0;
        padding-top: var(--header-offset, 120px) !important; /* Important for mobile */
    }
    .page-privacy-policy__main-title {
        font-size: 2.5em;
    }
    .page-privacy-policy__intro-text {
        font-size: 1em;
    }
    .page-privacy-policy__content-section,
    .page-privacy-policy__faq-section,
    .page-privacy-policy__cta-section {
        padding: 40px 0;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
    }
    .page-privacy-policy p,
    .page-privacy-policy__list li,
    .page-privacy-policy__faq-answer p {
        font-size: 0.95em;
    }
    .page-privacy-policy__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-privacy-policy__faq-item.active .page-privacy-policy__faq-answer {
        padding: 10px 15px 15px 15px;
    }
    .page-privacy-policy__cta-title {
        font-size: 2em;
    }
    .page-privacy-policy__cta-text {
        font-size: 1em;
    }
    .page-privacy-policy__btn-primary {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    /* Mobile image, video, button responsive requirements */
    .page-privacy-policy img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container,
    .page-privacy-policy__faq-item,
    .page-privacy-policy__cta-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

    .page-privacy-policy__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 2em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__faq-question {
        font-size: 1em;
    }
    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }
}