.page-privacy-policy {
    background-color: #08160F; /* Background color from custom palette */
    color: #F2FFF6; /* Text Main from custom palette for general text */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

.page-privacy-policy__hero-section {
    position: relative;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as per instruction */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #08160F; /* Ensure dark background for hero */
}

.page-privacy-policy__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Slightly dimmed to ensure text readability */
    filter: brightness(0.8); /* Adjust brightness for contrast, not color */
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(17, 39, 27, 0.7); /* Card BG with transparency for readability */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__main-title {
    font-size: clamp(28px, 4vw, 48px); /* Responsive font size for H1 */
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    max-width: 600px; /* Limit width for better readability */
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__tagline {
    font-size: clamp(16px, 2vw, 20px);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-privacy-policy__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button--bottom {
    margin-top: 40px;
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #08160F; /* Ensure content area matches body background */
    color: #F2FFF6; /* Main text color */
}

.page-privacy-policy__section-intro {
    margin-bottom: 40px;
    text-align: center;
}

.page-privacy-policy__section-title {
    font-size: clamp(24px, 3vw, 40px);
    color: #2AD16F; /* Highlight with a vibrant green */
    margin-bottom: 20px;
    font-weight: 700;
}

.page-privacy-policy__section-intro p {
    font-size: 18px;
    color: #A7D9B8; /* Secondary text color */
    max-width: 800px;
    margin: 0 auto;
}

.page-privacy-policy__section-block {
    margin-bottom: 50px;
}

.page-privacy-policy__sub-title {
    font-size: clamp(22px, 2.5vw, 32px);
    color: #57E38D; /* Glow color for sub-titles */
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 2px solid #1E3A2A; /* Divider color */
    padding-bottom: 10px;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    color: #F2FFF6; /* Main text color */
}

.page-privacy-policy__card {
    background-color: #11271B; /* Card BG from custom palette */
    border: 1px solid #2E7A4E; /* Border color from custom palette */
    border-radius: 10px;
    padding: 30px;
    margin-top: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: #F2FFF6; /* Ensure text on card is readable */
}

.page-privacy-policy__card-image {
    width: 100%;
    max-width: 400px; /* Example max-width, will be responsive */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 15px;
}

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

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

.page-privacy-policy__list li strong {
    color: #2AD16F; /* Highlight strong text */
}

.page-privacy-policy__link {
    color: #57E38D; /* Use glow color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #2AD16F; /* Darker green on hover */
    text-decoration: underline;
}

/* --- Responsive Adjustments --- */
@media (min-width: 769px) {
    .page-privacy-policy__card {
        flex-direction: row;
        align-items: center;
    }
    .page-privacy-policy__card-image {
        flex-shrink: 0;
        margin-right: 20px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-privacy-policy__hero-content {
        padding: 15px;
    }

    .page-privacy-policy__main-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .page-privacy-policy__tagline {
        font-size: 16px;
    }

    .page-privacy-policy__cta-button {
        width: 100% !important;
        padding: 12px 20px;
        font-size: 16px;
    }

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

    .page-privacy-policy__section-title {
        font-size: 24px;
    }

    .page-privacy-policy__sub-title {
        font-size: 20px;
    }

    .page-privacy-policy p,
    .page-privacy-policy__list li {
        font-size: 15px;
    }

    .page-privacy-policy__card {
        flex-direction: column;
        padding: 20px;
    }

    .page-privacy-policy__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-right: 0;
        margin-bottom: 15px;
    }

    /* 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__section-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Video responsiveness (if any) */
    .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;
    }

    /* Button responsiveness */
    .page-privacy-policy__cta-button,
    .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;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__cta-buttons,
    .page-privacy-policy__button-group,
    .page-privacy-policy__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-privacy-policy__cta-buttons {
        display: flex;
        flex-direction: column;
    }
}