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

@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    }
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
}

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

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

.page-gdpr__button--register {
    background-color: #FCBC45; /* Login color for primary action */
    color: #000000;
}

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

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

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

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #333333;
}

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

.page-gdpr__commitment-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-gdpr__commitment-card:hover {
    transform: translateY(-5px);
}

.page-gdpr__card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
}

.page-gdpr__card-description {
    font-size: 1em;
    color: #555555;
}

.page-gdpr__rights-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-gdpr__rights-image {
    flex: 1;
    min-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-gdpr__rights-list {
    flex: 1;
    min-width: 300px;
    list-style: none;
    padding: 0;
}

.page-gdpr__rights-item {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #333333;
}

.page-gdpr__rights-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FCBC45;
}

.page-gdpr__security-image,
.page-gdpr__policy-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

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

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

.page-gdpr__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 30px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
}

.page-gdpr__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

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

.page-gdpr__button--contact {
    background-color: #FCBC45;
    color: #000000;
}

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

/* Mobile responsiveness */
@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: 2em;
    }
    .page-gdpr__commitment-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__rights-container {
        flex-direction: column;
    }
    .page-gdpr__rights-image {
        min-width: unset;
        width: 100%;
    }
    .page-gdpr__cta-title {
        font-size: 2em;
    }
    .page-gdpr__cta-description {
        font-size: 1em;
    }
    .page-gdpr__button {
        width: 100%;
        padding: 12px 20px;
    }
    /* Ensure all content area images are responsive and do not overflow */
    .page-gdpr__hero-image,
    .page-gdpr__rights-image,
    .page-gdpr__security-image,
    .page-gdpr__policy-image {
        max-width: 100%;
        height: auto;
    }
}