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

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

.page-gdpr__hero-section {
    background-color: #000000; /* Main color for hero background */
    color: #FFFFFF; /* Light text for dark background */
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow if larger than container */
}

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

.page-gdpr__hero-image {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.page-gdpr__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    width: 1200px; /* Display width */
    height: 675px; /* Display height */
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-gdpr__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FCBC45; /* Highlight with accent color */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__button--register {
    background-color: #FCBC45; /* Login color for primary CTA */
    color: #000000; /* Black text for FCBC45 background */
    border: none;
}

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

.page-gdpr__compliance-overview {
    padding: 60px 0;
    background-color: #FFFFFF; /* Light background */
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #000000; /* Dark text */
    text-align: center;
    margin-bottom: 40px;
}

.page-gdpr__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #555555;
}

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

.page-gdpr__card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page-gdpr__card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
    width: 400px; /* Display width */
    height: 300px; /* Display height */
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

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

.page-gdpr__list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
    color: #444444;
}

.page-gdpr__list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-gdpr__list li::before {
    content: '✓';
    color: #FCBC45;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-gdpr__button--secondary {
    background-color: #000000; /* Dark background */
    color: #FFFFFF; /* Light text */
    border: 1px solid #000000;
    margin-top: auto; /* Push button to bottom */
}

.page-gdpr__button--secondary:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
}

.page-gdpr__faq-section {
    background-color: #f2f2f2;
    padding: 60px 0;
}

.page-gdpr__faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-gdpr__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-gdpr__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-gdpr__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-gdpr__faq-answer {
    font-size: 1em;
    color: #555555;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.page-gdpr__faq-answer.active {
    display: block;
}

.page-gdpr__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__cta-section .page-gdpr__section-title {
    color: #FCBC45;
}

.page-gdpr__cta-section .page-gdpr__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-gdpr__button--primary {
    background-color: #FCBC45;
    color: #000000;
    border: none;
}

.page-gdpr__button--primary:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
    }
    .page-gdpr__hero-section {
        padding: 40px 0;
    }
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__card {
        padding: 20px;
    }
    .page-gdpr__compliance-overview,
    .page-gdpr__faq-section,
    .page-gdpr__cta-section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__faq-question {
        font-size: 1.1em;
    }
    /* Mobile content image constraint */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* enforce min-width */
        min-height: 200px; /* enforce min-height */
    }
    .page-gdpr__card img {
        width: 100%; /* Override fixed width for mobile */
        height: auto;
    }
    .page-gdpr__hero-image img {
        width: 100%; /* Override fixed width for mobile */
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
}

/* Ensure all images within .page-gdpr are at least 200x200px and responsive on mobile */
.page-gdpr img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Ensures images fill their space without distortion */
}