/* style/privacy-policy.css */

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

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-privacy-policy__hero-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 900px;
    margin: 20px;
    color: #ffffff;
}

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

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

.page-privacy-policy__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px;
    min-height: 48px;
}

.page-privacy-policy__hero-button:hover {
    background-color: #e6c200;
    color: #000000;
}

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

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #0A2463;
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #FFD700;
}

.page-privacy-policy__subsection {
    margin-bottom: 40px;
    padding: 20px;
    border-left: 5px solid #0A2463;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.page-privacy-policy__subsection-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

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

.page-privacy-policy__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

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

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

/* Call to Action Section */
.page-privacy-policy__call-to-action {
    text-align: center;
    background-color: #0A2463;
    color: #ffffff;
    padding: 60px 20px;
    margin-top: 50px;
    border-radius: 8px;
}

.page-privacy-policy__call-to-action-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-privacy-policy__call-to-action-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__call-to-action-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 10px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px;
    min-height: 48px;
}

.page-privacy-policy__call-to-action-button:hover {
    background-color: #e6c200;
    color: #000000;
}

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

.page-privacy-policy__call-to-action-button--secondary:hover {
    background-color: #FFD700;
    color: #0A2463;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-privacy-policy__hero-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__subsection-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__call-to-action-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy {
        padding-top: var(--header-offset, 80px);
    }
    .page-privacy-policy__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-privacy-policy__hero-content {
        padding: 30px 15px;
        margin: 15px;
    }
    .page-privacy-policy__hero-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__hero-description {
        font-size: 1em;
    }
    .page-privacy-policy__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-privacy-policy__content-area {
        margin: 20px auto;
        padding: 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .page-privacy-policy__subsection-title {
        font-size: 1.3em;
    }
    .page-privacy-policy__subsection {
        padding: 15px;
        margin-bottom: 30px;
    }
    .page-privacy-policy__image {
        max-width: 100%;
        height: auto;
    }
    .page-privacy-policy__call-to-action {
        padding: 40px 15px;
    }
    .page-privacy-policy__call-to-action-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__call-to-action-description {
        font-size: 1em;
    }
    .page-privacy-policy__call-to-action-button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    /* Ensure content images don't overflow on mobile */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.4em;
    }
    .page-privacy-policy__subsection-title {
        font-size: 1.2em;
    }
    .page-privacy-policy__call-to-action-title {
        font-size: 1.6em;
    }
}