/* gdpr.css */

.page-gdpr {
    background-color: #F4F7FB; /* Using the specified background color */
    color: #1F2D3D;
    padding-bottom: 40px;
}

.page-gdpr__hero-section {
    padding-top: 10px; /* Small top padding as per requirement */
    background-color: #FFFFFF; /* Example background */
    margin-bottom: 40px;
    border-bottom: 1px solid #D6E2FF;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
    max-width: 1200px; /* Consistent with site content width */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.page-gdpr__main-title {
    color: #000000;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    /* No fixed font-size for H1 as per requirement */
}

.page-gdpr__intro-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__content-section {
    max-width: 1200px; /* Consistent with site content width */
    margin: 0 auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-gdpr__container {
    padding: 20px;
}

.page-gdpr__section-title {
    color: #000000;
    font-size: 2em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-gdpr__paragraph {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1em;
}

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

.page-gdpr__list-item {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-gdpr__link {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: 500;
}

.page-gdpr__link:hover {
    text-decoration: underline;
}

.page-gdpr__image-text-block {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

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

.page-gdpr__image-text-block .page-gdpr__text-content {
    flex: 1;
    min-width: 300px; /* Ensure text content has enough space */
}

.page-gdpr__content-image {
    width: 100%;
    max-width: 400px; /* Recommended size for content images */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__content-image--centered {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block; /* Override flex behavior if in a flex container */
}

.page-gdpr__contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #F4F7FB; /* Lighter background for contact block */
    border-radius: 8px;
    border: 1px solid #D6E2FF;
}

.page-gdpr__last-updated {
    text-align: right;
    font-size: 0.9em;
    color: #666;
    margin-top: 40px;
}

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

    .page-gdpr__main-title {
        font-size: 2em; /* Adjusted for mobile, still not fixed rem/em */
    }

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

    .page-gdpr__content-section {
        padding: 15px;
    }

    .page-gdpr__section-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-gdpr__image-text-block,
    .page-gdpr__image-text-block--reverse {
        flex-direction: column; /* Stack image and text vertically */
        gap: 20px;
    }

    .page-gdpr__content-image {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto; /* Maintain aspect ratio */
    }

    /* Content area image size minimum constraint for mobile */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure content images are not too small */
        min-height: 200px; /* Ensure content images are not too small */
    }
}

/* Ensure content images are not too small on desktop either */
.page-gdpr img:not(.page-gdpr__hero-image) {
    min-width: 200px;
    min-height: 200px;
}