/* style/privacy-policy.css */

/* Global styles for the privacy policy page */
.page-privacy-policy {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
    background-color: #08160F; /* Background */
    overflow: hidden; /* Ensure no image overflow */
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit hero image height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

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

.page-privacy-policy__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    z-index: 1; /* Ensure text is above any potential background elements */
}

.page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-description {
    font-size: clamp(1em, 1.5vw, 1.2em);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #08160F; /* Background */
}

.page-privacy-policy__introduction {
    font-size: 0.9em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 20px;
}

.page-privacy-policy__introduction-text {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #F2FFF6; /* Text Main */
    text-align: justify;
}

.page-privacy-policy__heading-2 {
    font-size: clamp(1.5em, 2.5vw, 2.2em);
    color: #F2FFF6; /* Text Main */
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid #2E7A4E; /* Border */
    padding-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__heading-3 {
    font-size: clamp(1.2em, 2vw, 1.8em);
    color: #F2FFF6; /* Text Main */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-privacy-policy__paragraph {
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
    text-align: justify;
}

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    color: #F2FFF6; /* Text Main */
}

.page-privacy-policy__sub-list {
    list-style-type: circle;
    margin-left: 20px;
    margin-top: 5px;
}

.page-privacy-policy__image-block {
    margin: 40px 0;
    text-align: center;
}

.page-privacy-policy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__image-caption {
    margin-top: 15px;
    font-size: 0.9em;
    color: #A7D9B8; /* Text Secondary */
}

.page-privacy-policy__contact-link {
    color: #2AD16F; /* Button gradient start color for links */
    text-decoration: underline;
}

.page-privacy-policy__contact-link:hover {
    color: #57E38D; /* Glow color on hover */
}

.page-privacy-policy__cta-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.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;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    max-width: 100%; /* Ensure button does not overflow container */
}

.page-privacy-policy__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__btn-primary:hover {
    background: linear-gradient(180deg, #57E38D 0%, #2AD16F 100%); /* Glow on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__btn-secondary {
    background: #11271B; /* Card BG */
    color: #2AD16F; /* Button gradient start color for text */
    border: 2px solid #2AD16F; /* Button gradient start color for border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__btn-secondary:hover {
    background: #2E7A4E; /* Border color on hover */
    color: #F2FFF6; /* Text Main */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Specific image wrapper for contact section if needed */
.page-privacy-policy__contact-image-wrapper {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure content area images are at least 200px wide for desktop */
.page-privacy-policy__content-area img {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-privacy-policy {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-privacy-policy__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-privacy-policy__hero-image-wrapper {
        max-height: 300px;
    }

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

    .page-privacy-policy__hero-description {
        font-size: clamp(0.9em, 3vw, 1.1em);
    }

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

    .page-privacy-policy__heading-2 {
        font-size: clamp(1.4em, 5vw, 2em);
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .page-privacy-policy__heading-3 {
        font-size: clamp(1.1em, 4vw, 1.6em);
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* Mobile image responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container,
    .page-privacy-policy__hero-section,
    .page-privacy-policy__content-area {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Specific override for content-area if it has its own padding */
    .page-privacy-policy__content-area {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Mobile button responsiveness */
    .page-privacy-policy__cta-section {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center;
        gap: 15px;
        padding: 0 15px;
    }

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