/* 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 color */
    color: #FFFFFF; /* White text for dark background */
    padding: var(--header-offset, 120px) 20px 60px; /* Ensure space for fixed header */
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Minimum height for hero section */
}

.page-gdpr__hero-container {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 1.2;
}

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

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

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

.page-gdpr__btn--register:hover {
    background-color: #f0f0f0;
    color: #000000;
    transform: translateY(-2px);
}

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

.page-gdpr__btn--login:hover {
    background-color: #e0a53b;
    color: #000000;
    transform: translateY(-2px);
}

.page-gdpr__btn--primary {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    margin-top: 30px;
}

.page-gdpr__btn--primary:hover {
    background-color: #e0a53b;
    color: #000000;
    transform: translateY(-2px);
}

.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
}

.page-gdpr__section-wrapper {
    margin-bottom: 60px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    border-bottom: 3px solid #FCBC45;
    padding-bottom: 15px;
    display: inline-block;
    max-width: 100%;
}

.page-gdpr__sub-title {
    font-size: 1.6em;
    color: #000000;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-gdpr__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

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

.page-gdpr__list-item strong {
    color: #000000;
}

.page-gdpr__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover; /* Ensures images cover the area without distortion */
    min-width: 200px; /* Enforce minimum width */
    min-height: 200px; /* Enforce minimum height */
}

.page-gdpr__link {
    color: #000000;
    text-decoration: underline;
    font-weight: bold;
}

.page-gdpr__link:hover {
    color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .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__sub-title {
        font-size: 1.4em;
    }
    .page-gdpr__paragraph, .page-gdpr__list-item {
        font-size: 0.95em;
    }
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 1em;
        min-width: unset;
        width: 100%;
        margin: 10px 0;
    }
    .page-gdpr__content-area {
        padding: 20px 15px;
    }
    /* Ensure images are responsive and do not overflow */
    .page-gdpr__image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce minimum width */
        min-height: 200px; /* Still enforce minimum height */
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-description {
        font-size: 0.9em;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__sub-title {
        font-size: 1.2em;
    }
}