/* style/privacy-policy.css */

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

/* Base styles for the page content, ensuring light text on dark background */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* #F2FFF6 */
    background-color: var(--background); /* #08160F */
    line-height: 1.6;
    padding-bottom: 60px; /* Space for footer */
}

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--background); /* #08160F */
    overflow: hidden;
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    margin-bottom: 40px;
    z-index: 1;
}

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

.page-privacy-policy__description {
    font-size: 1.1rem;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 30px;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 20px;
    justify-content: center;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    min-width: 180px;
}

.page-privacy-policy__btn-primary {
    background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: var(--text-main); /* #F2FFF6 */
    border: none;
}

.page-privacy-policy__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__btn-secondary {
    background-color: transparent;
    color: var(--text-main); /* #F2FFF6 */
    border: 2px solid var(--border); /* #2E7A4E */
}

.page-privacy-policy__btn-secondary:hover {
    background-color: rgba(46, 122, 78, 0.2); /* Slightly lighter border color for hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.page-privacy-policy__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: var(--background); /* #08160F */
    border-bottom: 1px solid var(--divider); /* #1E3A2A */
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__section-title {
    font-size: 2.5rem;
    color: var(--gold); /* #F2C14E */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-privacy-policy__sub-title {
    font-size: 1.8rem;
    color: var(--text-main); /* #F2FFF6 */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-privacy-policy__content-block {
    font-size: 1.1rem;
    color: var(--text-secondary); /* #A7D9B8 */
}

.page-privacy-policy__content-block p {
    margin-bottom: 15px;
    color: var(--text-secondary); /* #A7D9B8 */
}

.page-privacy-policy__content-block strong {
    color: var(--text-main); /* #F2FFF6 */
}

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

.page-privacy-policy__list li {
    margin-bottom: 10px;
    color: var(--text-secondary); /* #A7D9B8 */
}

.page-privacy-policy__list li strong {
    color: var(--text-main); /* #F2FFF6 */
}

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border); /* #2E7A4E */
}

.page-privacy-policy__contact-link {
    color: var(--glow); /* #57E38D */
    text-decoration: underline;
}

.page-privacy-policy__contact-link:hover {
    color: var(--text-main); /* #F2FFF6 */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-privacy-policy__section-title {
        font-size: 2rem;
    }
    .page-privacy-policy__sub-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 40px 15px;
        padding-top: 10px; /* Still small top padding */
    }

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

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

    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important; /* Ensure container takes full width */
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
    }

    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

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

    .page-privacy-policy__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-privacy-policy__sub-title {
        font-size: 1.3rem;
    }

    .page-privacy-policy__content-block,
    .page-privacy-policy__content-block p,
    .page-privacy-policy__list li {
        font-size: 0.95rem;
    }

    /* Mobile image responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container,
    .page-privacy-policy__content-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important;
    }
    /* Specific override for hero-image-wrapper if needed */
    .page-privacy-policy__hero-image-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}