.page-gdpr {
    color: #333333;
    background-color: #FFFFFF;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

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

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
    border-radius: 8px;
}

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

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

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

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

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

.page-gdpr__button--login {
    background-color: #FCBC45; /* Login button with specified color */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-gdpr__button--login:hover {
    background-color: #FFD700; /* Slightly brighter gold on hover */
    color: #000000;
    border-color: #FFD700;
}

.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;
    font-weight: bold;
}

.page-gdpr__subsection-title {
    font-size: 2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-gdpr__image-grid {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

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

.page-gdpr__rights-list,
.page-gdpr__security-list,
.page-gdpr__links-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-gdpr__rights-item,
.page-gdpr__security-item {
    background-color: #F8F8F8;
    border-left: 5px solid #FCBC45;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-gdpr__rights-heading,
.page-gdpr__security-heading {
    font-size: 1.3em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-gdpr__rights-description,
.page-gdpr__security-description {
    font-size: 1em;
    color: #555555;
}

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 8px;
}

.page-gdpr__contact-text {
    font-size: 1.2em;
    margin-bottom: 15px;
}

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

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

.page-gdpr__related-links {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E0E0E0;
    text-align: center;
}

.page-gdpr__links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.page-gdpr__links-item {
    margin: 0;
}

.page-gdpr__link {
    display: block;
    padding: 10px 20px;
    background-color: #F0F0F0;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

.page-gdpr__link:hover {
    background-color: #FCBC45;
    color: #000000;
}

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

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

.page-gdpr__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

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

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

    .page-gdpr__button {
        display: block;
        margin: 15px auto;
        width: 80%;
    }

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

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

    .page-gdpr__text-block {
        font-size: 1em;
    }

    .page-gdpr__image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum image size */
        min-height: 200px; /* Enforce minimum image size */
    }

    .page-gdpr__rights-item, .page-gdpr__security-item {
        padding: 15px;
    }

    .page-gdpr__rights-heading, .page-gdpr__security-heading {
        font-size: 1.2em;
    }

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

    .page-gdpr__links-list {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__link {
        width: 80%;
    }

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

    /* Ensure content area images don't overflow */
    .page-gdpr__content-area img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        height: 500px;
    }

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

    .page-gdpr__button {
        width: 90%;
    }

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

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