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

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 40px; /* Small top padding, more bottom padding */
    max-width: 1390px; /* Boxed layout */
    margin: 0 auto; /* Center the section */
    background-color: #FFFFFF; /* Using Card BG for hero section background */
    border-bottom: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px; /* Slight roundness */
    overflow: hidden; /* Ensure image corners are clipped if rounded */
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    max-width: 1200px; /* Max width for hero image */
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-gdpr__hero-content {
    max-width: 800px;
}

.page-gdpr__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
}

.page-gdpr__description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 30px;
}

.page-gdpr__content-section {
    padding: 40px 20px;
    max-width: 1390px; /* Boxed layout */
    margin: 20px auto; /* Center the section with margin from hero */
    background-color: #FFFFFF; /* Card BG */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Light shadow */
}

.page-gdpr__container {
    max-width: 960px;
    margin: 0 auto;
}

.page-gdpr__section-title {
    color: #1F2D3D; /* Text Main */
    font-size: 2em;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.page-gdpr__subtitle {
    color: #2F6BFF; /* Main color */
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__paragraph {
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-gdpr__list-item {
    background-color: #F4F7FB; /* Background color for list item */
    border-left: 4px solid #6FA3FF; /* Auxiliary color for accent */
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__list-icon {
    font-size: 1.2em;
    color: #2F6BFF; /* Main color for icon */
}

.page-gdpr__list-strong {
    color: #000000; /* Custom Color_1776249996415 */
}

.page-gdpr__image {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-gdpr__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    color: #FFFFFF;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 150px;
}

.page-gdpr__button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly different gradient on hover */
    transform: translateY(-2px);
}

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

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

    .page-gdpr__description {
        font-size: 1em;
    }

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

    .page-gdpr__section-title {
        font-size: 1.6em;
    }

    .page-gdpr__subtitle {
        font-size: 1.3em;
    }

    .page-gdpr__button-group {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Mobile overflow prevention */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure color contrast for text on background */
.page-gdpr__paragraph,
.page-gdpr__description,
.page-gdpr__list-item {
    color: #1F2D3D; /* Text Main, high contrast on #FFFFFF or #F4F7FB */
}

.page-gdpr__list-strong {
    color: #000000; /* Custom Color_1776249996415, high contrast on #F4F7FB */
}