/* style/privacy-policy.css */

/* General page styling for .page-privacy-policy */
.page-privacy-policy {
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 400px; /* Minimum height for hero section */
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5); /* Slightly darken image for text readability */
}

.page-privacy-policy__hero-container {
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text */
    border-radius: 10px;
}

.page-privacy-policy__hero-title {
    font-size: 2.8em;
    color: #FFD700; /* Primary color for title */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-privacy-policy__section {
    margin-bottom: 40px;
    background-color: rgba(26, 26, 46, 0.8); /* Semi-transparent secondary color */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #FFD700; /* Primary color for section titles */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

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

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

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

.page-privacy-policy__list-item strong {
    color: #FFD700; /* Primary color for strong text in list */
}

.page-privacy-policy__link {
    color: #FFD700; /* Primary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #ffe066; /* Lighter shade on hover */
    text-decoration: underline;
}

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}

.page-privacy-policy__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__contact-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-privacy-policy__contact-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-privacy-policy__contact-item strong {
    color: #FFD700;
}

.page-privacy-policy__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Primary color for CTA button */
    color: #1A1A2E; /* Secondary color for button text */
    padding: 15px 30px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__cta-button:hover {
    background-color: #ffe066; /* Lighter shade on hover */
    transform: translateY(-3px);
}


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

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

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

    .page-privacy-policy__section {
        padding: 20px;
    }

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item,
    .page-privacy-policy__contact-item {
        font-size: 0.95em;
    }

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

    /* Mobile content area images must be responsive */
    .page-privacy-policy__content-area img {
        max-width: 100%;
        height: auto;
    }
}

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

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

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

    .page-privacy-policy__section {
        padding: 15px;
    }
}