:root {
    --f8et-primary-color: #11A84E; /* Main */
    --f8et-secondary-color: #22C768; /* Auxiliary */
    --f8et-button-gradient-start: #2AD16F;
    --f8et-button-gradient-end: #13994A;
    --f8et-card-bg: #11271B;
    --f8et-background: #08160F;
    --f8et-text-main: #F2FFF6;
    --f8et-text-secondary: #A7D9B8;
    --f8et-border: #2E7A4E;
    --f8et-glow: #57E38D;
    --f8et-gold: #F2C14E;
    --f8et-divider: #1E3A2A;
    --f8et-deep-green: #0A4B2C;
}

.page-privacy-policy {
    background-color: var(--f8et-background); /* Using custom background color */
    color: var(--f8et-text-main); /* Main text color for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    text-align: center;
    padding: 20px;
    padding-top: 10px; /* Small top padding */
    box-sizing: border-box;
    background-color: var(--f8et-deep-green);
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for large screens */
    margin-bottom: 30px; /* Space between image and text */
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1; /* Ensure content is above any potential background elements */
    color: var(--f8et-text-main);
}

.page-privacy-policy__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size */
    color: var(--f8et-gold); /* Using Gold for main title */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-privacy-policy__description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--f8et-text-secondary);
    margin-bottom: 30px;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--f8et-button-gradient-start) 0%, var(--f8et-button-gradient-end) 100%);
    color: var(--f8et-text-main);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.page-privacy-policy__cta-button--secondary {
    background: transparent;
    border: 2px solid var(--f8et-secondary-color);
    color: var(--f8et-secondary-color);
    margin-left: 15px;
}

.page-privacy-policy__cta-button--secondary:hover {
    background: var(--f8et-secondary-color);
    color: var(--f8et-text-main);
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-privacy-policy__dark-section {
    background-color: var(--f8et-card-bg); /* Use card background for dark sections */
    color: var(--f8et-text-main);
}

.page-privacy-policy__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--f8et-secondary-color);
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.page-privacy-policy__text-block {
    background-color: var(--f8et-background); /* Default background for text blocks within content area */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--f8et-text-main);
    margin-bottom: 40px;
    border: 1px solid var(--f8et-border);
}

.page-privacy-policy__dark-section .page-privacy-policy__text-block {
    background-color: var(--f8et-card-bg); /* Darker background for text blocks in dark sections */
    border: 1px solid var(--f8et-border);
}

.page-privacy-policy__subsection-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--f8et-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--f8et-text-secondary);
}

.page-privacy-policy__text-block p {
    color: var(--f8et-text-secondary);
}

.page-privacy-policy ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--f8et-text-secondary);
}

.page-privacy-policy li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--f8et-text-secondary);
}

.page-privacy-policy a {
    color: var(--f8et-gold); /* Link color */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: var(--f8et-glow);
}

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

.page-privacy-policy__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--f8et-card-bg);
    border-radius: 10px;
    border: 1px solid var(--f8et-border);
}

.page-privacy-policy__cta-wrapper p {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: var(--f8et-text-main);
    margin-bottom: 25px;
}

/* Responsive design for images, videos, and buttons */
@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 15px;
        line-height: 1.6;
    }

    .page-privacy-policy__hero-section {
        padding: 15px;
        padding-top: 10px !important; /* Small top padding for mobile */
    }

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

    .page-privacy-policy__description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }

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

    .page-privacy-policy__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 30px;
    }

    .page-privacy-policy__subsection-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-privacy-policy p,
    .page-privacy-policy li {
        font-size: 0.95rem;
    }

    /* Images responsive */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important; /* Enforce min size even on mobile */
        min-height: 200px !important;
    }
    
    .page-privacy-policy__hero-image {
        min-width: unset !important; /* Hero image can scale down */
        min-height: unset !important;
    }

    /* Containers for images */
    .page-privacy-policy__hero-image-wrapper,
    .page-privacy-policy__text-block,
    .page-privacy-policy__cta-wrapper,
    .page-privacy-policy__content-area {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px; /* Add padding to prevent content touching edges */
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Buttons responsive */
    .page-privacy-policy__cta-button,
    .page-privacy-policy a[class*="button"],
    .page-privacy-policy a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important; /* Remove left margin for stacking */
        margin-top: 10px; /* Add top margin for spacing when stacked */
    }

    .page-privacy-policy__cta-wrapper {
        display: flex;
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__cta-wrapper .page-privacy-policy__cta-button {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

/* Ensure content area images don't get tiny */
.page-privacy-policy__content-area img {
    min-width: 200px;
    min-height: 200px;
}