.page-gdpr-compliance {
    padding-top: 10px; /* Small top padding for content below header */
    color: #f5f5f5; /* Light text for dark background */
    background-color: #000000; /* Main background color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 15px;
    padding-right: 15px;
}

.page-gdpr-compliance__hero-section {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
}

.page-gdpr-compliance__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px; /* Space between image and text */
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-gdpr-compliance__hero-content {
    width: 100%; /* Ensure content block takes full width */
    max-width: 900px; /* Limit content width for readability */
    margin: 0 auto;
    padding: 0 15px;
}

.page-gdpr-compliance__main-title {
    color: #FCBC45; /* Accent color for title */
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-gdpr-compliance__intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #e5e5e5;
}

.page-gdpr-compliance__section {
    background-color: #1a1a1a; /* Slightly lighter background for sections */
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr-compliance__section-title {
    color: #FCBC45; /* Accent color for section titles */
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 600;
}

.page-gdpr-compliance__paragraph {
    margin-bottom: 15px;
    color: #f5f5f5;
}

.page-gdpr-compliance__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #f5f5f5;
}

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

.page-gdpr-compliance__link {
    color: #FCBC45; /* Accent color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr-compliance__link:hover {
    text-decoration: underline;
    color: #FFD700; /* Lighter gold on hover */
}

.page-gdpr-compliance__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px 0;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-gdpr-compliance__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
    justify-content: center;
}

.page-gdpr-compliance__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 150px;
}

.page-gdpr-compliance__button--primary {
    background-color: #FCBC45; /* Login button color */
    color: #000000;
}

.page-gdpr-compliance__button--primary:hover {
    background-color: #FFD700;
}

.page-gdpr-compliance__button--secondary {
    background-color: #FFFFFF; /* Register button color */
    color: #000000;
    border: 1px solid #FCBC45;
}

.page-gdpr-compliance__button--secondary:hover {
    background-color: #e0e0e0;
}

.page-gdpr-compliance__faq-item {
    background-color: #0d0d0d;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #333333;
}

.page-gdpr-compliance__faq-question {
    color: #FCBC45;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-gdpr-compliance__faq-answer {
    color: #e5e5e5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-gdpr-compliance {
        padding-left: 10px;
        padding-right: 10px;
    }

    .page-gdpr-compliance__hero-content {
        padding: 0 5px;
    }

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

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

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

    .page-gdpr-compliance__button-group {
        flex-direction: column;
        align-items: stretch;
    }

    .page-gdpr-compliance__button {
        width: 100%;
        min-width: unset;
    }

    /* Enforce max-width for images in content area on mobile */
    .page-gdpr-compliance__section img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images meet min size requirements */
.page-gdpr-compliance__section img {
    min-width: 200px;
    min-height: 200px;
}

/* Ensure no filter is applied to images */
.page-gdpr-compliance__hero-image,
.page-gdpr-compliance__image {
    filter: none;
}