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

.page-privacy-policy__hero-section {
    background-color: #FFD700;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

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

.page-privacy-policy__hero-title {
    font-size: 3.5em;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: bold;
}

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

.page-privacy-policy__hero-image {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

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

.page-privacy-policy__section-heading {
    font-size: 2.5em;
    color: #FFD700;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 3px solid #1A1A1A;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-privacy-policy__sub-heading {
    font-size: 1.8em;
    color: #1A1A1A;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333333;
}

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

.page-privacy-policy__list-item strong {
    color: #1A1A1A;
}

.page-privacy-policy__link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.page-privacy-policy__cta-section {
    background-color: #1A1A1A;
    color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy {
        padding-top: var(--header-offset, 80px);
    }

    .page-privacy-policy__hero-section {
        padding: 60px 15px;
        min-height: 300px;
    }

    .page-privacy-policy__hero-title {
        font-size: 2.5em;
    }

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

    .page-privacy-policy__hero-image {
        margin-top: 30px;
    }

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

    .page-privacy-policy__section-heading {
        font-size: 2em;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .page-privacy-policy__sub-heading {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 10px;
    }

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list {
        font-size: 1em;
    }

    .page-privacy-policy__list {
        margin-left: 20px;
    }

    .page-privacy-policy__cta-section {
        padding: 30px 15px;
        margin-top: 40px;
    }

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

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

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

    /* Mobile specific image sizing for content area */
    .page-privacy-policy__content-area img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min size even on mobile */
        min-height: 200px; /* Enforce min size even on mobile */
    }
    .page-privacy-policy {
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
}

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