.page-privacy-policy {
    color: #333333; /* Dark text for light body background */
}

.page-privacy-policy__hero-section {
    background-color: #FFFFFF;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    padding-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    position: relative;
}

.page-privacy-policy__hero-title {
    font-size: 3.2em;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
    /* filter: grayscale(100%); Removed filter to adhere to no filter rule */
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.page-privacy-policy__section {
    margin-bottom: 40px;
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #000000;
    margin-bottom: 20px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
    font-weight: 600;
}

.page-privacy-policy__paragraph {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333333;
}

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

.page-privacy-policy__list-item {
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 8px;
}

.page-privacy-policy__link {
    color: #000000;
    text-decoration: underline;
    font-weight: 500;
}

.page-privacy-policy__link:hover {
    color: #FCBC45;
}

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

.page-privacy-policy__cta-section {
    background-color: #000000; /* Dark background for CTA */
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
}

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

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

.page-privacy-policy__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #F0F0F0;
    line-height: 1.6;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color for CTA */
    color: #000000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background-color: #E0A030;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-title {
        font-size: 2.2em;
    }

    .page-privacy-policy__hero-description,
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 1em;
    }

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

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

    .page-privacy-policy__cta-button {
        font-size: 1.1em;
        padding: 12px 30px;
    }

    .page-privacy-policy__content-area,
    .page-privacy-policy__hero-section {
        padding: 30px 15px;
    }

    .page-privacy-policy__image {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 150px; /* Adjust min-height for mobile if needed, but min-width 200px is key */
    }

    .page-privacy-policy__hero-image {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__hero-section {
        padding-bottom: 40px;
    }
}

/* Ensure images within content area are responsive and not too small */
.page-privacy-policy img {
    max-width: 100%;
    height: auto;
    /* Enforce min-size for all content images */
    min-width: 200px;
    min-height: 200px;
}

/* Specific rule for mobile images to prevent overflow */
@media (max-width: 768px) {
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small even on mobile */
        min- /* Allow a slightly smaller min-height if aspect ratio requires it, but width is primary */
    }
}