/* style/privacy-policy.css */
.page-privacy-policy {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    background-color: #0A192F; /* Primary brand color for hero background */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-privacy-policy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    opacity: 0.2; /* Subtle background image */
}

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

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for main CTA */
    color: #0A192F;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__article {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
}

.page-privacy-policy__article:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.page-privacy-policy__heading {
    font-size: 2em;
    color: #0A192F;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-privacy-policy__paragraph {
    font-size: 1em;
    margin-bottom: 15px;
    color: #333333;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-privacy-policy__list-item {
    margin-bottom: 8px;
}

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

.page-privacy-policy__inline-link {
    color: #0A192F;
    text-decoration: underline;
    font-weight: bold;
}

.page-privacy-policy__inline-link:hover {
    color: #FFD700;
}

.page-privacy-policy__cta-section {
    background-color: #0A192F;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
}

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

.page-privacy-policy__cta-heading {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-privacy-policy__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-privacy-policy__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-privacy-policy__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__hero-title {
        font-size: 2.2em;
    }

    .page-privacy-policy__hero-description {
        font-size: 1em;
    }

    .page-privacy-policy__heading {
        font-size: 1.6em;
    }

    .page-privacy-policy__cta-heading {
        font-size: 1.8em;
    }

    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Enforce image responsiveness and min size for content images */
    .page-privacy-policy__content-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure images are not too small */
        min-height: 200px;
    }

    .page-privacy-policy__hero-image img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__hero-description {
        font-size: 0.9em;
    }

    .page-privacy-policy__heading {
        font-size: 1.4em;
    }

    .page-privacy-policy__cta-heading {
        font-size: 1.5em;
    }

    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}