.page-gdpr {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    background-color: #FFFFFF;
}

.page-gdpr__hero-section {
    position: relative;
    padding: 0;
    text-align: center;
    overflow: hidden;
    background-color: #000000; /* Dark background for hero to make text pop */
    color: #FFFFFF;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.6;
}

.page-gdpr__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    padding: 20px;
    z-index: 10;
}

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

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

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

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

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

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

.page-gdpr__button--login {
    background-color: #FCBC45; /* Custom color for login */
    color: #000000; /* Ensure good contrast with FCBC45 */
    border: 2px solid #FCBC45;
}

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

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

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

.page-gdpr__container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.page-gdpr__section-text {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    color: #333333;
}

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

.page-gdpr__commitment-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__commitment-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-gdpr__commitment-heading {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-gdpr__commitment-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

.page-gdpr__rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__right-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-gdpr__right-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
    width: 200px; /* Set display width to minimum */
    height: 200px; /* Set display height to minimum */
    margin: 0 auto 15px auto;
}

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

.page-gdpr__right-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #555555;
}

.page-gdpr__action-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1em;
    color: #333333;
}

.page-gdpr__action-text a {
    color: #000000;
    font-weight: bold;
    text-decoration: none;
}

.page-gdpr__action-text a:hover {
    text-decoration: underline;
}

.page-gdpr__button--contact {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    margin: 40px auto 0 auto;
    display: block;
    width: fit-content;
}

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

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

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

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

    .page-gdpr__button {
        width: 100%;
    }

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

    .page-gdpr__section-text {
        font-size: 1em;
    }

    .page-gdpr__commitment-list,
    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }
    
    .page-gdpr__hero-image,
    .page-gdpr__section-image,
    .page-gdpr__right-icon {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area does not cause horizontal scroll */
    .page-gdpr {
        overflow-x: hidden;
    }
}