.page-privacy-policy {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
    padding-top: 10px; /* Small top padding for main content */
    padding-bottom: 40px;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.page-privacy-policy__hero-section {
    display: flex;
    flex-direction: column; /* Stack image and content vertically */
    align-items: center;
    text-align: center;
    padding: 0 0 40px; /* Adjust padding, no negative margins */
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto; /* Responsive height */
    display: block;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16/5; /* 1920:600 fallback */
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px 15px 0; /* Add padding for separation */
    background-color: transparent;
}

.page-privacy-policy__main-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); /* Adjusted for privacy policy, less aggressive than homepage */
    font-weight: 700;
    line-height: 1.2;
    color: #FF8C1A; /* Primary color for emphasis */
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__hero-description {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.6;
    color: #FFF3E6; /* Text Main */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__content-section {
    padding: 40px 15px;
}

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

.page-privacy-policy__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    color: #FFA53A; /* Accent color */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #A84F0C; /* Border color */
    padding-bottom: 10px;
}

.page-privacy-policy__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #FFF3E6; /* Text Main */
}

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

.page-privacy-policy__list-item {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.page-privacy-policy__link {
    color: #FF8C1A; /* Primary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #FFA53A; /* Accent color on hover */
    text-decoration: underline;
}

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

.page-privacy-policy__contact-item {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

.page-privacy-policy__content-image {
    width: 100%;
    max-width: 800px; /* Ensure images don't stretch too wide */
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

.page-privacy-policy__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
    color: #FFF3E6; /* Text Main */
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 26, 0.4); /* Glow effect */
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-privacy-policy__main-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }
    .page-privacy-policy__hero-description {
        font-size: clamp(0.9rem, 2.8vw, 1.1rem);
    }
    .page-privacy-policy__section-title {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }
}

@media (max-width: 549px) {
    .page-privacy-policy__main-title {
        font-size: clamp(1.3rem, 6vw, 2.2rem);
        padding: 0 10px;
    }
    .page-privacy-policy__hero-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        padding: 0 10px;
    }
    .page-privacy-policy__section-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item,
    .page-privacy-policy__contact-item {
        font-size: 0.9rem;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }
    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Ensure content area images are responsive and not too small */
@media (max-width: 768px) {
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
    /* Specific rule for content images to ensure min-width doesn't cause overflow on small screens if not handled correctly */
    .page-privacy-policy__content-image {
        min-width: unset; /* Override min-width for mobile to prevent overflow */
        min-height: unset; /* Override min-height for mobile to prevent overflow */
        width: 100%; /* Ensure it fills available width */
        height: auto;
    }
    /* Re-apply min-width for larger screens if necessary, or ensure general image rules are robust */
    @media (min-width: 769px) {
        .page-privacy-policy__content-image {
            min-width: 200px;
            min-height: 200px;
        }
    }
}