/* style/gdpr.css */

.page-gdpr {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif; /* Roboto-like font */
    line-height: 1.6;
}

.page-gdpr__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: #2F6BFF; /* Main color for hero background */
    display: flex;
    flex-direction: column; /* Default to column for image above text */
    align-items: center;
    text-align: center;
    overflow: hidden; /* For responsiveness */
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 1200px; /* Max width for image */
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 20px auto 0;
    padding: 0 20px;
    color: #FFFFFF; /* White text on blue background */
}

.page-gdpr__main-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-gdpr__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 44px; /* Touch target */
    display: flex; /* For vertical alignment of text */
    align-items: center;
    justify-content: center;
}

.page-gdpr__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 107, 255, 0.4); /* Glow effect */
}

.page-gdpr__cta-button--secondary {
    background: #6FA3FF; /* Auxiliary color for secondary button */
    box-shadow: none;
}

.page-gdpr__cta-button--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(111, 163, 255, 0.4);
}

.page-gdpr__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-gdpr__section:first-of-type {
    margin-top: 30px; /* Space below hero section */
}

.page-gdpr__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__section-paragraph {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__list {
    list-style: disc inside;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-gdpr__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-gdpr__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__text-block {
    flex: 1;
    min-width: 300px; /* Ensure text block doesn't get too small */
}

.page-gdpr__image {
    flex: 1;
    min-width: 300px; /* Ensure image doesn't get too small */
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover; /* Ensures image covers area without distortion */
    min-height: 200px; /* Enforce min image size */
}

.page-gdpr__image--right {
    margin-left: auto;
}

.page-gdpr__image--left {
    margin-right: auto;
}

.page-gdpr__contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__contact-item {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

/* Mobile responsiveness */
@media (max-width: 849px) {
    .page-gdpr__hero-section {
        padding-top: 20px; /* Adjust for smaller screens */
        padding-bottom: 30px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

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

    .page-gdpr__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

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

    .page-gdpr__section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .page-gdpr__content-grid,
    .page-gdpr__content-grid--reverse {
        flex-direction: column; /* Stack content on mobile */
        gap: 30px;
    }

    .page-gdpr__image,
    .page-gdpr__image--right,
    .page-gdpr__image--left {
        max-width: 100%;
        margin: 0 auto; /* Center images when stacked */
        min-height: 200px; /* Ensure images are not too small */
        width: 100%;
        height: auto; /* Important for responsiveness */
    }

    .page-gdpr__section-paragraph,
    .page-gdpr__list-item {
        text-align: left; /* Adjust text alignment for mobile readability */
    }
}

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

    .page-gdpr__main-title {
        font-size: clamp(1.4rem, 8vw, 2.2rem);
    }

    .page-gdpr__intro-text {
        font-size: 0.95rem;
    }

    .page-gdpr__section {
        padding: 30px 10px;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
    }
}

/* Ensure all images in content section are responsive and meet min size */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
    }
    .page-gdpr {
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }
}