/* style/gdpr.css */
.page-gdpr {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-gdpr__hero-section {
    background-color: #000000; /* Main dark background for hero */
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
}

.page-gdpr__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    color: #FFFFFF;
}

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

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for emphasis */
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.page-gdpr__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.page-gdpr__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    min-width: 200px; /* Ensure button minimum size */
}

.page-gdpr__button--register {
    background-color: #FCBC45; /* Login color for register */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-gdpr__button--register:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

.page-gdpr__button--login {
    background-color: transparent;
    color: #FCBC45;
    border: 2px solid #FCBC45;
}

.page-gdpr__button--login:hover {
    background-color: #FCBC45;
    color: #000000;
    transform: translateY(-3px);
}

.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #FFFFFF; /* Light background for content */
}

.page-gdpr__article {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-gdpr__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #333333;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
    color: #333333;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-gdpr__link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

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

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

.page-gdpr__image--inline {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    max-width: 400px;
    width: 100%; /* Responsive sizing */
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.page-gdpr__button--promotions {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-gdpr__button--promotions:hover {
    background-color: #FFD700;
    transform: translateY(-3px);
}

.page-gdpr__button--internal {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-gdpr__button--internal:hover {
    background-color: #333333;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__image--inline {
        float: none;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    }
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-actions, .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-gdpr__button {
        min-width: unset;
        width: 100%;
    }
    .page-gdpr__content-area {
        padding: 30px 15px;
    }
    .page-gdpr__article {
        padding: 20px;
    }
    .page-gdpr__list {
        margin-left: 20px;
    }
    .page-gdpr__image {
        max-width: 100%;
        height: auto;
    }
    /* Ensure all images in content area are responsive and not too small */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px; /* Ensure minimum size */
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__hero-description {
        font-size: 0.9em;
    }
    .page-gdpr__paragraph, .page-gdpr__list-item {
        font-size: 0.95em;
    }
}