/* style/privacy-policy.css */

/* Custom properties for colors */
:root {
    --page-privacy-policy-primary-color: #11A84E; /* Main color */
    --page-privacy-policy-secondary-color: #22C768; /* Auxiliary color */
    --page-privacy-policy-text-main: #F2FFF6; /* Main text color */
    --page-privacy-policy-text-secondary: #A7D9B8; /* Secondary text color */
    --page-privacy-policy-background-dark: #08160F; /* Background color */
    --page-privacy-policy-card-bg: #11271B; /* Card background color */
    --page-privacy-policy-border-color: #2E7A4E; /* Border color */
    --page-privacy-policy-divider-color: #1E3A2A; /* Divider color */
    --page-privacy-policy-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    --page-privacy-policy-button-text: #F2FFF6; /* Button text color */
}

.page-privacy-policy {
    background-color: var(--page-privacy-policy-background-dark); /* Ensure dark background */
    color: var(--page-privacy-policy-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    overflow: hidden;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px; /* Adjust as needed for visual balance */
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and text */
}

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

.page-privacy-policy__main-title {
    color: var(--page-privacy-policy-text-main);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    font-size: clamp(2em, 4vw, 3.5em); /* Example clamp for responsive H1 */
}

.page-privacy-policy__hero-description {
    color: var(--page-privacy-policy-text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
}

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

.page-privacy-policy__content-area {
    padding: 60px 0;
}

.page-privacy-policy__dark-bg {
    background-color: var(--page-privacy-policy-background-dark);
    color: var(--page-privacy-policy-text-main);
}

.page-privacy-policy__card-bg {
    background-color: var(--page-privacy-policy-card-bg);
    color: var(--page-privacy-policy-text-main);
}

.page-privacy-policy__section-title {
    color: var(--page-privacy-policy-text-main);
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.page-privacy-policy__sub-title {
    color: var(--page-privacy-policy-primary-color);
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-privacy-policy__text-block {
    color: var(--page-privacy-policy-text-secondary);
    margin-bottom: 20px;
    font-size: 1em;
}

.page-privacy-policy__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-privacy-policy__list-item {
    color: var(--page-privacy-policy-text-secondary);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-privacy-policy__list-item::before {
    content: '•';
    color: var(--page-privacy-policy-secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

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

.page-privacy-policy__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-privacy-policy a {
    color: var(--page-privacy-policy-secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

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

.page-privacy-policy__btn-primary {
    background: var(--page-privacy-policy-button-gradient);
    color: var(--page-privacy-policy-button-text);
    border: 2px solid transparent;
    margin-right: 15px;
}

.page-privacy-policy__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.page-privacy-policy__btn-secondary {
    background-color: transparent;
    color: var(--page-privacy-policy-primary-color);
    border: 2px solid var(--page-privacy-policy-primary-color);
}

.page-privacy-policy__btn-secondary:hover {
    background-color: var(--page-privacy-policy-primary-color);
    color: var(--page-privacy-policy-button-text);
}

.page-privacy-policy__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--page-privacy-policy-background-dark);
}

.page-privacy-policy__cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-privacy-policy__cta-title {
    color: var(--page-privacy-policy-text-main);
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-privacy-policy__cta-description {
    color: var(--page-privacy-policy-text-secondary);
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

@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-content {
        padding: 0 15px;
    }

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

    .page-privacy-policy__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-privacy-policy__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-privacy-policy__content-area {
        padding: 40px 0;
    }

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

    .page-privacy-policy__sub-title {
        font-size: 1.3em;
        margin-top: 30px;
    }

    /* Images responsiveness */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Video responsiveness (if any, though not used in this specific content) */
    .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; /* Small top padding for video section */
    }

    /* Button responsiveness */
    .page-privacy-policy__btn-primary,
    .page-privacy-policy__btn-secondary,
    .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-right: 0 !important; /* Remove right margin for stacked buttons */
        margin-bottom: 15px; /* Add bottom margin for stacked buttons */
        padding-left: 15px; /* Add padding to ensure text doesn't hit edges */
        padding-right: 15px; /* Add padding to ensure text doesn't hit edges */
    }

    .page-privacy-policy__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 0; /* Remove gap if using margin-bottom */
        padding: 0 15px; /* Add padding to the button group container */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__cta-buttons a:last-child {
        margin-bottom: 0; /* Remove bottom margin for the last button */
    }

    .page-privacy-policy__cta-title {
        font-size: 2em;
    }

    .page-privacy-policy__cta-description {
        font-size: 1.1em;
    }
}