.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light background */
    background-color: #FFFFFF; /* Explicitly set background for content area */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-gdpr__hero-section {
    position: relative;
    text-align: center;
    color: #FFFFFF; /* White text for hero overlay */
    padding: 80px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

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

.page-gdpr__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

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

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

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

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

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

.page-gdpr__button--register {
    background-color: #FFFFFF; /* Specified color */
    color: #000000;
}

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

.page-gdpr__button--login {
    background-color: #FCBC45; /* Specified color */
    color: #000000;
}

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

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

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

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

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

.page-gdpr__keyword {
    font-weight: bold;
    color: #000000;
}

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

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

.page-gdpr__commitment-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

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

.page-gdpr__commitment-text {
    color: #555555;
}

.page-gdpr__rights-list {
    list-style: disc inside;
    margin-bottom: 30px;
    padding-left: 20px;
    font-size: 1.1em;
    color: #333333;
}

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

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

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

.page-gdpr__protection-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__feature-item {
    background-color: #F0F0F0;
    padding: 20px;
    border-left: 5px solid #FCBC45;
    border-radius: 5px;
}

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

.page-gdpr__feature-text {
    color: #555555;
}

.page-gdpr__contact-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #F8F8F8;
    border-radius: 8px;
    margin-top: 40px;
}

.page-gdpr__contact-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 30px;
    min-width: 200px;
    min-height: 200px;
}

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

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

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

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

    .page-gdpr__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-gdpr__paragraph,
    .page-gdpr__rights-list,
    .page-gdpr__feature-text {
        font-size: 1em;
    }

    .page-gdpr__commitment-grid,
    .page-gdpr__protection-features {
        grid-template-columns: 1fr;
    }

    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}