.page-gdpr {
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #FFFFFF;
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Ensure hero section has a minimum height */
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

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

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

.page-gdpr__hero-content {
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
    padding: 30px;
    border-radius: 10px;
    color: #FFFFFF;
}

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

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

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-gdpr__cta-button--register {
    background-color: #FCBC45; /* Login color for registration */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-gdpr__cta-button--register:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-gdpr__cta-button--explore {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #FCBC45;
}

.page-gdpr__cta-button--explore:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.page-gdpr__content-area {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid #FCBC45;
    padding-bottom: 10px;
}

.page-gdpr__sub-section-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-gdpr__image-text-block {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.page-gdpr__image-text-block--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__image-text-block-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%; /* Ensure image takes full width of its flex item */
    height: auto;
    object-fit: cover;
    min-height: 200px;
}

.page-gdpr__image-text-block-content {
    flex: 2;
    min-width: 300px;
}

.page-gdpr__list {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #333333;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1.0em;
}

.page-gdpr__list-item strong {
    color: #000000;
}

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

.page-gdpr__right-card {
    background-color: #F8F8F8;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-gdpr__right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__right-description {
    font-size: 1.0em;
    color: #555555;
}

.page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
    min-height: 200px;
}

.page-gdpr__content-image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-gdpr__related-links {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.page-gdpr__related-link-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-gdpr__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 50px 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 50px;
}

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

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

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

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

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

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

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

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

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

    .page-gdpr__image-text-block {
        flex-direction: column;
        gap: 20px;
    }

    .page-gdpr__image-text-block--reverse {
        flex-direction: column;
    }

    .page-gdpr__image-text-block-image {
        min-width: 200px;
        max-width: 100%;
        height: auto;
    }

    .page-gdpr__content-area {
        margin: 20px auto;
        padding: 15px;
    }

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

    .page-gdpr__sub-section-title {
        font-size: 1.3em;
    }

    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

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

    .page-gdpr__list-item strong {
        display: block;
        margin-bottom: 5px;
    }

    /* Ensure all images within .page-gdpr are responsive and not smaller than 200px */
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
}

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

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

    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

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

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

    .page-gdpr__paragraph,
    .page-gdpr__list-item,
    .page-gdpr__right-description {
        font-size: 0.95em;
    }
}