.page-gdpr {
    background-color: #F5F7FA;
    color: #333333;
    font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding for first section */
    padding-bottom: 40px;
    background-color: #100224; /* Dark background for hero */
    color: #FFFFFF;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit hero image height */
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin-top: 20px; /* Space between image and text */
}

.page-gdpr__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 100%; /* Ensure H1 doesn't cause overflow */
}

.page-gdpr__intro-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__button--secondary {
    background: #FF5A4F;
    margin-top: 20px;
}

.page-gdpr__section {
    padding: 60px 20px;
    text-align: left;
}

.page-gdpr__section--alt-bg {
    background-color: #FFFFFF;
}

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

.page-gdpr__section-heading {
    font-size: 2.2em;
    color: #E53935;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__content-block {
    line-height: 1.7;
    font-size: 1.05em;
    color: #333333;
    margin-bottom: 20px;
}

.page-gdpr__content-block p {
    margin-bottom: 1em;
}

.page-gdpr__content-block--center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__content-block--two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-gdpr__content-block--two-columns .page-gdpr__image-wrapper,
.page-gdpr__content-block--two-columns .page-gdpr__text-content {
    flex: 1;
    min-width: 300px;
}

.page-gdpr__image-wrapper {
    text-align: center;
}

.page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure it doesn't have extra space below */
    margin: 0 auto;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-gdpr__list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-gdpr__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333333;
}

.page-gdpr__list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E53935;
    font-weight: bold;
    font-size: 1.2em;
}

.page-gdpr__section--faq .page-gdpr__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.page-gdpr__faq-list {
    flex: 2;
    min-width: 300px;
}

.page-gdpr__faq-item {
    background-color: #F5F7FA;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-gdpr__faq-question {
    font-size: 1.15em;
    color: #E53935;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__faq-answer p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 0;
}

.page-gdpr__faq-image-wrapper {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.page-gdpr__faq-image-wrapper .page-gdpr__content-image {
    min-width: 200px;
    min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-content {
        padding: 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Use clamp for H1 */
        margin-bottom: 15px;
    }

    .page-gdpr__intro-text {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-gdpr__section {
        padding: 40px 15px;
    }

    .page-gdpr__section-heading {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-gdpr__content-block--two-columns {
        flex-direction: column;
        gap: 20px;
    }

    .page-gdpr__content-block--two-columns.reverse-order-on-mobile {
        flex-direction: column-reverse;
    }

    .page-gdpr__content-block--two-columns .page-gdpr__image-wrapper,
    .page-gdpr__content-block--two-columns .page-gdpr__text-content {
        min-width: unset;
        width: 100%;
    }

    .page-gdpr__content-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
    }

    .page-gdpr__section--faq .page-gdpr__container {
        flex-direction: column;
        gap: 20px;
    }

    .page-gdpr__faq-list,
    .page-gdpr__faq-image-wrapper {
        min-width: unset;
        width: 100%;
    }

    /* Enforce mobile image responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        padding-bottom: 30px;
    }

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-gdpr__list-item {
        padding-left: 25px;
    }

    .page-gdpr__list-item::before {
        font-size: 1em;
    }
}