/* style/privacy-policy.css */

.page-privacy-policy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #f8f8f8; /* Slightly off-white background for content area */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-privacy-policy__hero-section {
    background-color: #0A2463; /* Main color as background */
    color: #ffffff; /* Light text for dark background */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-privacy-policy__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-privacy-policy__hero-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #ffffff; /* White background for content */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: -40px; /* Overlap with hero for visual flow */
    position: relative;
    z-index: 2;
}

.page-privacy-policy__section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.page-privacy-policy__section-title {
    font-size: 1.8em;
    color: #0A2463; /* Main color for section titles */
    margin-bottom: 15px;
    border-left: 5px solid #FFD700; /* Accent line */
    padding-left: 15px;
}

.page-privacy-policy__section-paragraph {
    margin-bottom: 15px;
    color: #555555;
}

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

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

.page-privacy-policy__link {
    color: #0A2463; /* Main color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #FFD700; /* Accent color on hover */
    text-decoration: underline;
}

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

.page-privacy-policy__image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure it's not inline */
    margin: 0 auto; /* Center the image */
}

/* Ensure content images are not small */
.page-privacy-policy__content-area img {
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__call-to-action {
    text-align: center;
    padding: 40px 20px;
    background-color: #0A2463; /* Main color for CTA background */
    color: #ffffff;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-privacy-policy__cta-text {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for CTA text */
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for button */
    color: #0A2463; /* Main color for button text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background-color: #e6c200; /* Slightly darker accent on hover */
    transform: translateY(-2px);
}

.page-privacy-policy__footer-note {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #777777;
    background-color: #f0f0f0;
    margin-top: 40px;
}

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

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

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

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

    .page-privacy-policy__hero-section {
        padding: 40px 15px;
    }

    /* Ensure images in content area are responsive and don't overflow */
    .page-privacy-policy__content-area img {
        max-width: 100%;
        height: auto;
    }
}

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

    .page-privacy-policy__hero-section {
        padding: 30px 10px;
    }
}