/* style/gdpr.css */

/* Base styles for the GDPR page content */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background #FFFFFF */
    background-color: #FFFFFF; /* Explicitly set background if needed, but body background is already white */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    text-align: center;
    color: #FFFFFF; /* Light text for hero content over potentially dark image */
    padding: 80px 20px;
    overflow: hidden; /* Ensure image doesn't overflow */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px; /* Minimum height for hero */
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-gdpr__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for readability */
    border-radius: 10px;
}

.page-gdpr__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FCBC45; /* Login color for emphasis */
}

.page-gdpr__intro-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

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

.page-gdpr__section-wrapper {
    padding: 0;
}

.page-gdpr__section-heading {
    font-size: 2em;
    color: #000000; /* Main color */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FCBC45; /* Highlight with accent color */
    padding-bottom: 10px;
}

.page-gdpr__sub-heading {
    font-size: 1.5em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr__paragraph {
    margin-bottom: 15px;
    color: #333333;
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__link {
    color: #FCBC45; /* Accent color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__link:hover {
    text-decoration: underline;
}

/* Call to Action Buttons */
.page-gdpr__call-to-action {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #000000; /* Dark background for CTA section */
    border-radius: 8px;
}

.page-gdpr__call-to-action .page-gdpr__paragraph {
    color: #FFFFFF;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
}

.page-gdpr__btn--register {
    background-color: #FFFFFF; /* Register color */
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-gdpr__btn--register:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.page-gdpr__btn--login {
    background-color: #FCBC45; /* Login color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-gdpr__btn--login:hover {
    background-color: transparent;
    color: #FCBC45;
}

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

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

    .page-gdpr__section-heading {
        font-size: 1.6em;
    }

    .page-gdpr__sub-heading {
        font-size: 1.3em;
    }

    .page-gdpr__content-area {
        padding: 20px 15px;
    }

    .page-gdpr__btn {
        width: 100%;
        margin-bottom: 15px;
    }

    /* Mobile image constraint */
    .page-gdpr__content-area img,
    .page-gdpr__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        padding: 60px 15px;
    }

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