/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    background-color: #FFFFFF;
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-gdpr__hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    text-align: center;
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login button color for emphasis */
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.page-gdpr__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-gdpr__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

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

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

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

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

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

.page-gdpr__button--contact:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
}

.page-gdpr__content-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-gdpr__content-section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section--introduction {
    background-color: #f8f8f8;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
}

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

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

.page-gdpr__image--right {
    float: right;
    margin: 0 0 20px 40px;
    max-width: 45%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure image is not too small */
    min-height: 200px;
}

.page-gdpr__image--left {
    float: left;
    margin: 0 40px 20px 0;
    max-width: 45%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure image is not too small */
    min-height: 200px;
}

.page-gdpr__section--rights .page-gdpr__container::after,
.page-gdpr__section--collection .page-gdpr__container::after {
    content: "";
    display: table;
    clear: both;
}

.page-gdpr__link-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.page-gdpr__link-item a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: #FCBC45;
    border: 1px solid #FCBC45;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__link-item a:hover {
    background-color: #FCBC45;
    color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.8em;
    }
    .page-gdpr__hero-description {
        font-size: 1.2em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__text,
    .page-gdpr__list-item {
        font-size: 1em;
    }
    .page-gdpr__image--right,
    .page-gdpr__image--left {
        max-width: 100%;
        float: none;
        margin: 20px auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-gdpr__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__list {
        margin-left: 20px;
    }
    .page-gdpr__text {
        text-align: left;
    }
    .page-gdpr__image--right img,
    .page-gdpr__image--left img,
    .page-gdpr__hero-image {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr__link-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__button {
        width: 90%;
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__container {
        padding: 0 15px;
    }
}