.page-gdpr {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif; /* A common, readable font */
    line-height: 1.6;
    padding-bottom: 40px; /* Add some padding at the bottom of the main content */
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
    background-color: #2F6BFF; /* A background color for the hero section itself */
    overflow: hidden; /* Ensure content doesn't spill out */
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    max-width: 100%; /* Ensure it doesn't overflow */
    /* No fixed font-size, rely on browser defaults and responsive handling */
}

.page-gdpr__description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

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

.page-gdpr__button:hover {
    opacity: 0.9;
}

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

.page-gdpr__section-title {
    color: #2F6BFF; /* Main color for section titles */
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

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

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

.page-gdpr__card {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__card-title {
    color: #2F6BFF; /* Main color for card titles */
    font-size: 1.25em;
    margin-bottom: 10px;
}

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

.page-gdpr__list-item {
    background-color: #F8F9FA; /* Slightly different background for list items */
    border-left: 4px solid #6FA3FF; /* Auxiliary color for emphasis */
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #1F2D3D; /* Text Main */
}

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

.page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-gdpr__contact-item {
    margin-bottom: 10px;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__contact-item a {
    color: #2F6BFF; /* Link color */
    text-decoration: none;
}

.page-gdpr__contact-item a:hover {
    text-decoration: underline;
}

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

    .page-gdpr__main-title {
        font-size: 2em; /* Adjusted for smaller screens, but still relative */
    }

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

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

    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.75em;
    }

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