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

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

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: #FFFFFF; /* Card BG, for the hero section background */
    border-bottom: 1px solid #D6E2FF; /* Border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

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

.page-gdpr__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 2.8em); /* Use clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    max-width: 100%;
}

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

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 180px;
}

.page-gdpr__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
    color: #FFFFFF;
    border: none;
}

.page-gdpr__button--primary:hover {
    box-shadow: 0 6px 12px rgba(47, 107, 255, 0.4); /* Glow */
    transform: translateY(-2px);
}

.page-gdpr__button--secondary {
    background-color: #FFFFFF;
    color: #2F6BFF; /* Primary */
    border: 1px solid #2F6BFF; /* Primary */
}

.page-gdpr__button--secondary:hover {
    background-color: #E6F0FF; /* Lighter version of primary for hover */
    color: #2F6BFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(47, 107, 255, 0.2);
}

.page-gdpr__button--centered {
    margin: 20px auto 0;
    display: block; /* Make it block to center with margin auto */
    max-width: 250px;
}

.page-gdpr__content-section {
    padding: 50px 0;
    background-color: #FFFFFF; /* Card BG */
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.page-gdpr__content-section--principles {
    margin-top: 40px;
}

.page-gdpr__section-title {
    font-size: 2em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.page-gdpr__paragraph {
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 15px;
    text-align: justify;
}

.page-gdpr__paragraph a {
    color: #2F6BFF; /* Primary */
    text-decoration: none;
    font-weight: bold;
}

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

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

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

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

    .page-gdpr__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-gdpr__intro-paragraph {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

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

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

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

    .page-gdpr__list {
        margin-left: 20px;
    }

    /* Mobile image constraint */
    .page-gdpr__hero-image,
    .page-gdpr__content-section img { /* Added a generic selector for any img in content section, though none are directly added in this HTML for now */
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__container {
        padding: 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }

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