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

.page-privacy-policy__hero-section {
    background-color: #000000; /* Main color for hero background */
    color: #FFFFFF; /* White text for dark background */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-privacy-policy__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for emphasis */
    line-height: 1.2;
}

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

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

.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: #FCBC45; /* Login button color */
    color: #000000; /* Black text for login button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-privacy-policy__article {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__heading {
    font-size: 2em;
    color: #000000; /* Main color for headings */
    margin-bottom: 15px;
    border-bottom: 2px solid #FCBC45; /* Accent line */
    padding-bottom: 10px;
}

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

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

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

.page-privacy-policy__link {
    color: #FCBC45; /* Accent color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__link:hover {
    text-decoration: underline;
}

.page-privacy-policy__image-container {
    margin: 30px 0;
    text-align: center;
}

.page-privacy-policy__image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure it's a block element */
    margin: 0 auto; /* Center the image */
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
}

.page-privacy-policy__promo-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
    margin-top: 40px;
}

.page-privacy-policy__promo-title {
    font-size: 2.5em;
    color: #FCBC45;
    margin-bottom: 20px;
}

.page-privacy-policy__promo-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-privacy-policy__cta-button--promo {
    background-color: #FFFFFF; /* White button for contrast */
    color: #000000;
}

.page-privacy-policy__cta-button--promo:hover {
    background-color: #f0f0f0;
}

.page-privacy-policy__footer-cta {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.page-privacy-policy__footer-cta-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #000000;
}

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

.page-privacy-policy__small-cta-button {
    display: inline-block;
    background-color: #000000; /* Dark button */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__small-cta-button:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

/* Enforce minimum image size for all content images */
.page-privacy-policy img:not(.page-privacy-policy__hero-image img) {
    min-width: 200px;
    min-height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__main-title {
        font-size: 2em;
    }

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

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

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

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

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

    .page-privacy-policy__article {
        padding: 15px;
    }

    /* Mobile specific image rules */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
        /* min-width and min-height are already set for content images */
    }

    /* Ensure no horizontal scroll */
    .page-privacy-policy {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__promo-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__footer-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}