.page-privacy-policy {
    background-color: #0d0d0d; /* Dark background */
    color: #e5e5e5; /* Light text for contrast */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding as per rules */
}

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

.page-privacy-policy__hero-section {
    position: relative;
    padding-bottom: 30px; /* Space below image before text */
    text-align: center;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy__hero-image-wrapper {
    margin-bottom: 20px; /* Space between image and H1 */
}

.page-privacy-policy__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px; /* Limit hero image height */
    border-radius: 8px;
}

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

.page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 3em); /* Responsive font size for H1 */
    color: #FFD700; /* Gold accent */
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.page-privacy-policy__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f5f5f5;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__content-section {
    padding: 40px 0;
    background-color: #1A2E44; /* Primary color for content background */
    border-radius: 12px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    color: #e5e5e5;
}

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

.page-privacy-policy__list-item {
    margin-bottom: 8px;
}

.page-privacy-policy__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 800px; /* Ensure images don't stretch too wide */
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    min-width: 200px; /* Enforce minimum image size */
    min-height: 200px; /* Enforce minimum image size */
}

.page-privacy-policy__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #FFEA00; /* Slightly brighter gold on hover */
    text-decoration: underline;
}

.page-privacy-policy__paragraph-date {
    margin-top: 30px;
    font-style: italic;
    color: #cccccc;
    text-align: right;
    font-size: 0.9em;
}

.page-privacy-policy__cta-section {
    background-color: #0d0d0d;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-privacy-policy__cta-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-privacy-policy__cta-description {
    font-size: 1.1em;
    color: #e5e5e5;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 180px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-privacy-policy__button--primary {
    background-color: #FFD700;
    color: #1A2E44;
    border: 2px solid #FFD700;
}

.page-privacy-policy__button--primary:hover {
    background-color: #FFEA00;
    transform: translateY(-2px);
}

.page-privacy-policy__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-privacy-policy__button--secondary:hover {
    background-color: #1A2E44;
    transform: translateY(-2px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-privacy-policy__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }

    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-privacy-policy__button {
        width: 100%;
        max-width: 280px; /* Limit button width on mobile */
    }

    /* Enforce mobile image size rules */
    .page-privacy-policy__hero-image,
    .page-privacy-policy__image {
        max-width: 100%;
        height: auto;
    }
}