.page-privacy-policy {
    background-color: #140C0C;
    color: #FFF1E8;
    padding-bottom: 40px; /* General padding for the bottom of the page content */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column; /* Default to column for mobile-first approach */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    background-color: #2A1212; /* Card BG for this section */
    border-bottom: 1px solid #6A1E1E;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for the image */
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

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

.page-privacy-policy__hero-content {
    max-width: 800px;
}

.page-privacy-policy__main-title {
    font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFF1E8; /* Main text color */
    background: linear-gradient(90deg, #F3C54D, #FFB04A); /* Gold gradient for H1 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-privacy-policy__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    color: #FFF1E8;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure button is not too small */
    min-height: 44px; /* Ensure button is not too small */
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

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

.page-privacy-policy__container {
    background-color: #2A1212; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #6A1E1E;
}

.page-privacy-policy__section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 20px;
    color: #F3C54D; /* Gold color for section titles */
    line-height: 1.3;
}

.page-privacy-policy__section-title:first-of-type {
    margin-top: 0;
}

.page-privacy-policy__text-block {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #FFF1E8;
}

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

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

.page-privacy-policy__link {
    color: #FFB04A; /* Gold color for links */
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-privacy-policy__link:hover {
    color: #F3C54D; /* Lighter gold on hover */
    text-decoration: underline;
}

.page-privacy-policy__image-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #6A1E1E;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-privacy-policy__cta-wrapper {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #6A1E1E;
}


/* --- Responsive Design --- */
@media (max-width: 849px) {
    .page-privacy-policy__hero-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

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

    .page-privacy-policy__container {
        padding: 20px;
    }
}

@media (max-width: 549px) {
    .page-privacy-policy__hero-section {
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-privacy-policy__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .page-privacy-policy__description {
        font-size: 1rem;
    }

    .page-privacy-policy__section-title {
        font-size: 1.4rem;
    }

    .page-privacy-policy__text-block {
        font-size: 0.95rem;
    }

    .page-privacy-policy__list {
        padding-left: 20px;
    }

    .page-privacy-policy__list-item {
        font-size: 0.95rem;
    }

    /* Ensure images are responsive and don't overflow */
    .page-privacy-policy__hero-image,
    .page-privacy-policy__image {
        max-width: 100%;
        height: auto;
        display: block; /* Ensure it behaves as a block element for max-width */
        min-width: 200px; /* Maintain minimum size */
        min-height: 200px; /* Maintain minimum size */
    }
}