/* style/privacy-policy.css */

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

.page-privacy-policy__hero-section {
    background-color: #000000; /* Main color for hero background */
    padding: 60px 20px;
    text-align: center;
    color: #FFFFFF; /* Light text for dark hero background */
}

.page-privacy-policy__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-privacy-policy__hero-image {
    width: 100%;
    max-width: 800px; /* Example max-width for display */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-privacy-policy__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FCBC45; /* Login color for emphasis */
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto;
    color: #FFFFFF;
}

.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #FFFFFF; /* Auxiliary color for content background */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: -40px; /* Overlap with hero section */
    position: relative;
    z-index: 1;
}

.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: 2em;
    color: #000000; /* Main color for section titles */
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.page-privacy-policy__section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background-color: #FCBC45; /* Accent color */
    border-radius: 2px;
}

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

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

.page-privacy-policy__list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #333333;
}

.page-privacy-policy__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FCBC45; /* Accent color for list bullets */
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-privacy-policy__image {
    width: 100%;
    max-width: 600px; /* Ensure content images are large enough */
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__link {
    color: #000000; /* Main color for links */
    text-decoration: underline;
    font-weight: bold;
}

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

.page-privacy-policy__call-to-action {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.page-privacy-policy__register-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color for button */
    color: #000000; /* Main color for button text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FCBC45;
}

.page-privacy-policy__register-button:hover {
    background-color: #FFFFFF; /* White on hover */
    color: #FCBC45; /* Login color for text on hover */
    transform: translateY(-2px);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .page-privacy-policy {
        padding-top: var(--header-offset, 80px); /* Adjust header offset for mobile */
    }

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

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

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

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

    /* Enforce max-width for images to prevent overflow on mobile */
    .page-privacy-policy img {
        max-width: 100%;
        height: auto;
    }
}