:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg-color: #11271B;
    --bg-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

/* --- Base Styles --- */
.page-privacy-policy {
    background-color: var(--bg-color, #08160F); /* Fallback to custom background color */
    color: var(--text-main-color, #F2FFF6); /* Main text color, light for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Add some bottom padding */
}

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

.page-privacy-policy__section-title {
    font-size: 2.5em; /* Adjusted for larger screens, will use clamp if needed */
    color: var(--text-main-color, #F2FFF6);
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-privacy-policy__sub-title {
    font-size: 1.8em;
    color: var(--text-main-color, #F2FFF6);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-privacy-policy__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--text-secondary-color, #A7D9B8); /* Secondary text color */
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy__list-item strong {
    color: var(--text-main-color, #F2FFF6);
}

.page-privacy-policy a {
    color: var(--gold-color, #F2C14E); /* Gold for links */
    text-decoration: underline;
}

.page-privacy-policy a:hover {
    color: var(--glow-color, #57E38D); /* Lighter on hover */
    text-decoration: none;
}

/* --- Hero Section --- */
.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom */
    overflow: hidden;
    background-color: var(--deep-green-color, #0A4B2C); /* Use a darker green for hero background */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for aesthetic */
    overflow: hidden;
    margin-bottom: 30px;
}

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

.page-privacy-policy__hero-content {
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 1; /* Ensure content is above any background effects */
}

.page-privacy-policy__main-title {
    font-size: clamp(2.5em, 4vw, 3.5em); /* Responsive H1 font size */
    color: var(--text-main-color, #F2FFF6);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-privacy-policy__description {
    font-size: 1.2em;
    color: var(--text-secondary-color, #A7D9B8);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    margin-top: 30px;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure responsiveness */
}

.page-privacy-policy__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-privacy-policy__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px var(--glow-color, #57E38D);
}

.page-privacy-policy__btn-secondary {
    background: transparent;
    color: var(--glow-color, #57E38D);
    border: 2px solid var(--glow-color, #57E38D);
}

.page-privacy-policy__btn-secondary:hover {
    background: var(--glow-color, #57E38D);
    color: var(--deep-green-color, #0A4B2C); /* Darker text on hover */
    box-shadow: 0 0 15px var(--glow-color, #57E38D);
}

/* --- Content Section --- */
.page-privacy-policy__content-section {
    padding: 60px 0;
    background-color: var(--bg-color, #08160F); /* Ensure consistent background */
}

.page-privacy-policy__dark-section {
    background-color: var(--card-bg-color, #11271B); /* Darker background for content */
    padding: 60px 0;
    border-top: 1px solid var(--divider-color, #1E3A2A);
    border-bottom: 1px solid var(--divider-color, #1E3A2A);
}

.page-privacy-policy__image-wrapper {
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
}

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-privacy-policy__contact-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--text-secondary-color, #A7D9B8);
}

.page-privacy-policy__contact-item a {
    color: var(--glow-color, #57E38D);
    text-decoration: none;
}

.page-privacy-policy__contact-item a:hover {
    text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__description {
        font-size: 1.1em;
    }
    .page-privacy-policy__text-block {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-privacy-policy__hero-content {
        padding: 0 15px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(2em, 8vw, 2.5em); /* Even smaller H1 for mobile */
    }
    .page-privacy-policy__description {
        font-size: 1em;
    }
    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__container {
        padding: 0 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-privacy-policy p,
    .page-privacy-policy li {
        font-size: 0.95em;
    }

    /* Mobile image responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-privacy-policy__image-wrapper,
    .page-privacy-policy__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__content-section,
    .page-privacy-policy__dark-section {
        padding: 40px 0;
    }
    /* Video and button specific responsive rules (even if not used on this page, general rules should be present) */
    .page-privacy-policy video,
    .page-privacy-policy__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-privacy-policy__video-section,
    .page-privacy-policy__video-container,
    .page-privacy-policy__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-privacy-policy__video-section {
        padding-top: 10px !important;
    }
    .page-privacy-policy__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__cta-buttons.page-privacy-policy__cta-buttons--bottom {
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-privacy-policy__cta-buttons.page-privacy-policy__cta-buttons--bottom > * {
        width: 100% !important;
    }
}