/* style/privacy-policy.css */

.page-privacy-policy {
    color: #333333; /* Default text color for light body background */
}

.page-privacy-policy__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #007bff; /* Primary color background */
    color: #ffffff;
    text-align: center;
    overflow: hidden; /* To contain the image if it's absolutely positioned or has negative margins */
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

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

.page-privacy-policy__hero-button {
    display: inline-block;
    background-color: #28a745; /* Auxiliary color for button */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-privacy-policy__hero-button:hover {
    background-color: #1e7e34;
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtly blend the image with the background */
    z-index: 1;
}

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

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #28a745;
    padding-bottom: 10px;
}

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

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

.page-privacy-policy__text-link {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy__text-link:hover {
    color: #0056b3;
}

.page-privacy-policy__cta-section {
    background-color: #f8f9fa;
    padding: 50px 30px;
    text-align: center;
    border-radius: 12px;
    margin-top: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-privacy-policy__cta-title {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 20px;
}

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

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #28a745;
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }

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

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

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

    .page-privacy-policy__hero-content, .page-privacy-policy__content-area, .page-privacy-policy__cta-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Prevent content area images from overflowing on mobile */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
}

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

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

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

    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }

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