/* style/privacy-policy.css */

.page-privacy-policy {
    color: #f0f0f0; /* Light text for potential dark background */
    background-color: #1A202C; /* Deep grey background for the page content */
    padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

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

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

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
}

.page-privacy-policy__hero-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.page-privacy-policy__hero-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-privacy-policy__hero-description {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-privacy-policy__hero-cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
    color: #e0e0e0;
}

.page-privacy-policy__article {
    background-color: #1A202C;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-privacy-policy__subsection-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

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

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 800px; /* Ensure content images are not too wide on desktop */
}

.page-privacy-policy__cta-button {
    display: block;
    width: fit-content;
    margin: 50px auto 20px auto;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5);
}

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

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1.2em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__subsection-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 60px 15px;
        min-height: 350px;
    }
    .page-privacy-policy__hero-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1em;
    }
    .page-privacy-policy__hero-cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    .page-privacy-policy__content-area {
        padding: 20px 15px;
    }
    .page-privacy-policy__article {
        padding: 20px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__subsection-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 0.95em;
    }
    .page-privacy-policy__cta-button {
        padding: 12px 30px;
        font-size: 1.1em;
    }
    /* Mobile overflow prevention */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
    .page-privacy-policy__article {
        overflow-x: hidden; /* Prevent horizontal scroll within article */
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-section {
        padding: 40px 10px;
    }
    .page-privacy-policy__hero-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__hero-description {
        font-size: 0.9em;
    }
    .page-privacy-policy__hero-cta-button {
        padding: 10px 25px;
        font-size: 1em;
    }
    .page-privacy-policy__content-area {
        padding: 15px 10px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
    }
    .page-privacy-policy__subsection-title {
        font-size: 1.3em;
    }
    .page-privacy-policy__cta-button {
        font-size: 1em;
        padding: 10px 25px;
    }
}