.page-privacy-policy {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: 10px; /* Small top padding for the first section, body will handle header offset */
}

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

.page-privacy-policy__hero-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    padding-top: 0; /* Rely on body padding-top */
    display: flex;
    flex-direction: column; /* Enforce image above text */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    position: relative;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-privacy-policy__hero-content {
    background: linear-gradient(180deg, #11271B 0%, #08160F 100%); /* Card BG to Background */
    padding: 40px 20px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    max-width: 1200px;
    margin: -5px auto 0 auto; /* Slightly overlap with image for smooth transition */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border */
    border-top: none;
}

.page-privacy-policy__main-title {
    color: #F2C14E; /* Gold */
    font-size: clamp(2em, 4vw, 3.2em); /* Using clamp for H1, as per rule */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Glow effect */
}

.page-privacy-policy__hero-description {
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-privacy-policy__section-title {
    color: #F2C14E; /* Gold */
    font-size: 2.2em;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #2AD16F; /* Button top color */
    border-radius: 2px;
}

.page-privacy-policy__paragraph {
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
    font-size: 1em;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__list-item {
    margin-bottom: 8px;
    color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__list-item strong {
    color: #F2C14E; /* Gold */
}

.page-privacy-policy__image-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 30px;
}

.page-privacy-policy__image-content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-privacy-policy__section-image {
    flex: 0 0 40%;
    max-width: 40%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
    min-width: 200px; /* Enforce min image width */
    min-height: 200px; /* Enforce min image height */
    object-fit: cover;
}

.page-privacy-policy__text-content {
    flex: 1;
}

.page-privacy-policy__contact-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-privacy-policy__contact-item {
    margin-bottom: 10px;
    color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__contact-item a {
    color: #2AD16F; /* Button top color for links */
    text-decoration: none;
}

.page-privacy-policy__contact-item a:hover {
    text-decoration: underline;
    color: #57E38D; /* Glow */
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    font-size: 1.05em;
    border: none;
}

.page-privacy-policy__button--primary,
.page-privacy-policy__button--promotion {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-privacy-policy__button--primary:hover,
.page-privacy-policy__button--promotion:hover {
    background: linear-gradient(180deg, #57E38D 0%, #2AD16F 100%); /* Glow on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(42, 209, 111, 0.6);
}

.page-privacy-policy__contact-image {
    display: block;
    margin-top: 30px;
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Enforce min image width */
    min-height: 200px; /* Enforce min image height */
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-privacy-policy__hero-content {
        padding: 30px 15px;
    }

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

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

    .page-privacy-policy__image-content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .page-privacy-policy__image-content-wrapper--reverse {
        flex-direction: column; /* Keep column for reverse on mobile */
    }

    .page-privacy-policy__section-image {
        max-width: 80%;
        width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__container {
        padding: 15px;
    }

    .page-privacy-policy__hero-content {
        padding: 25px 10px;
    }

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

    .page-privacy-policy__hero-description {
        font-size: 0.95em;
    }

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

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.9em;
    }

    .page-privacy-policy__button {
        padding: 10px 20px;
        font-size: 1em;
    }

    /* CRITICAL: Mobile content area image resizing */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
    .page-privacy-policy__section-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }
    .page-privacy-policy__contact-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__section-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.3em, 7vw, 1.8em);
    }
    .page-privacy-policy__section-image {
        max-width: 100%;
    }
}