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

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-gdpr__hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 500px;
    padding: 20px;
}

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

.page-gdpr__hero-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black overlay for text readability */
    padding: 40px;
    border-radius: 8px;
    max-width: 900px;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FCBC45; /* Login color for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-gdpr__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
}

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

.page-gdpr__button--register:hover {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

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

.page-gdpr__button--login:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.page-gdpr__section {
    padding: 60px 20px;
    border-bottom: 1px solid #e0e0e0;
}

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

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

.page-gdpr__subsection-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
}

.page-gdpr__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    flex: 1;
    min-width: 300px;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 2;
    min-width: 300px;
}

.page-gdpr__list-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FCBC45;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.page-gdpr__list-title {
    font-size: 1.4em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-gdpr__list-text {
    font-size: 1em;
    color: #555555;
}

.page-gdpr__image {
    width: 400px; /* Base size for content images */
    height: 300px; /* Base size for content images */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto; /* Center images when they are the only element */
    display: block;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__image--right {
    order: 2;
    margin-left: 40px;
}

.page-gdpr__image--left {
    order: 1;
    margin-right: 40px;
}

.page-gdpr__image--center {
    width: 600px;
    height: 450px;
    margin: 40px auto;
}

.page-gdpr__section--commitment .page-gdpr__text {
    flex: 1;
}

.page-gdpr__section--principles .page-gdpr__container,
.page-gdpr__section--your-rights .page-gdpr__container,
.page-gdpr__section--data-sharing .page-gdpr__container,
.page-gdpr__section--security-measures .page-gdpr__container {
    justify-content: space-between;
    align-items: center;
}

.page-gdpr__section--principles .page-gdpr__list,
.page-gdpr__section--your-rights .page-gdpr__list {
    flex: 1.5;
}

.page-gdpr__contact-info {
    font-style: normal;
    font-size: 1.1em;
    margin-top: 20px;
    line-height: 1.8;
    width: 100%;
    text-align: center;
}

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

.page-gdpr__contact-link:hover {
    text-decoration: underline;
}

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

.page-gdpr__button--contact:hover {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #000000;
}

.page-gdpr__call-to-action {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #000000;
    border-radius: 8px;
}

.page-gdpr__cta-text {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-gdpr__button--join-now {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-gdpr__button--join-now:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 3em;
    }

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

    .page-gdpr__text,
    .page-gdpr__list-item,
    .page-gdpr__list-title,
    .page-gdpr__list-text {
        font-size: 1em;
    }

    .page-gdpr__image {
        width: 300px;
        height: 225px;
        margin: 20px auto;
        order: unset; /* Reset order for smaller screens */
    }

    .page-gdpr__image--right, .page-gdpr__image--left {
        margin: 20px auto;
    }

    .page-gdpr__image--center {
        width: 500px;
        height: 375px;
    }

    .page-gdpr__container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .page-gdpr__list {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }

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

    .page-gdpr__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-gdpr__button {
        width: 100%;
        max-width: 250px;
    }

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

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

    .page-gdpr__image {
        max-width: 100%; /* Important for mobile overflow */
        height: auto; /* Important for mobile overflow */
        min-width: 200px; /* Maintain minimum size */
        min-height: 200px; /* Maintain minimum size */
    }

    .page-gdpr__image--center {
        max-width: 100%;
        height: auto;
    }

    .page-gdpr__container {
        padding: 0 15px;
    }

    .page-gdpr__call-to-action {
        padding: 20px;
    }

    .page-gdpr__cta-text {
        font-size: 1.2em;
    }

    .page-gdpr__button--join-now {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }

    .page-gdpr__hero-content {
        padding: 20px;
    }

    .page-gdpr__section {
        padding: 40px 15px;
    }

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

    .page-gdpr__list-item {
        padding: 15px;
    }

    .page-gdpr__list-title {
        font-size: 1.2em;
    }

    .page-gdpr__image {
        width: 100%;
        height: auto;
    }
}