/* style/privacy-policy.css */

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

.page-privacy-policy {
    color: var(--text-main-color);
    background-color: var(--background-color);
    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;
    text-align: center;
    padding: 10px 0 60px 0; /* body padding-top handles header offset */
    background-color: var(--background-color);
    overflow: hidden;
}

.page-privacy-policy__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for hero image */
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-privacy-policy__main-title {
    color: var(--gold-color);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
    font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
}

.page-privacy-policy__description {
    color: var(--text-secondary-color);
    font-size: 18px;
    margin-bottom: 30px;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    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 {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--background-color);
    border-radius: 10px;
}

.page-privacy-policy__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__section-title {
    color: var(--gold-color);
    font-size: 32px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--divider-color);
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-privacy-policy__sub-title {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: bold;
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-privacy-policy__text-block p {
    margin-bottom: 15px;
    color: var(--text-secondary-color);
    font-size: 16px;
}

.page-privacy-policy__text-block ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary-color);
    font-size: 16px;
}

.page-privacy-policy__text-block ul li {
    margin-bottom: 8px;
}

.page-privacy-policy__text-block a {
    color: var(--glow-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__text-block a:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-privacy-policy__contact-image-wrapper {
    margin-top: 40px;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-image {
        max-height: 400px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(24px, 5vw, 40px);
    }
    .page-privacy-policy__section-title {
        font-size: 28px;
    }
    .page-privacy-policy__sub-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-privacy-policy__hero-image {
        max-height: 300px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(22px, 6vw, 36px);
    }
    .page-privacy-policy__description {
        font-size: 16px;
    }
    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-privacy-policy__content-area {
        padding: 30px 15px;
    }
    .page-privacy-policy__container {
        padding-left: 0;
        padding-right: 0;
    }
    .page-privacy-policy__section-title {
        font-size: 26px;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__sub-title {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 12px;
    }
    .page-privacy-policy__text-block p,
    .page-privacy-policy__text-block ul,
    .page-privacy-policy__text-block ul li {
        font-size: 15px;
    }

    /* Mobile image responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-privacy-policy__hero-image-wrapper,
    .page-privacy-policy__contact-image-wrapper,
    .page-privacy-policy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-section {
        padding: 10px 0 30px 0;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(20px, 7vw, 30px);
    }
    .page-privacy-policy__description {
        font-size: 14px;
    }
    .page-privacy-policy__cta-button {
        padding: 10px 20px;
        font-size: 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-privacy-policy__sub-title {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 10px;
    }
}