.page-gdpr {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
    background-color: #FFFFFF;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3em);
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 15px;
}

.page-gdpr__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-gdpr__content-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-gdpr__heading {
    font-size: clamp(1.5em, 3vw, 2.2em);
    font-weight: 600;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #D6E2FF;
    padding-bottom: 10px;
}

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

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

.page-gdpr__list-item {
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #1F2D3D;
}

.page-gdpr__list-item strong {
    color: #000000;
}

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

.page-gdpr__link:hover {
    text-decoration: underline;
    color: #6FA3FF;
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__contact-info {
    background-color: #F4F7FB;
    border: 1px solid #D6E2FF;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.page-gdpr__contact-item {
    font-size: 1em;
    margin-bottom: 10px;
    color: #1F2D3D;
}

.page-gdpr__contact-item strong {
    color: #000000;
}

.page-gdpr__contact-link {
    color: #2F6BFF;
    text-decoration: none;
}

.page-gdpr__contact-link:hover {
    text-decoration: underline;
    color: #6FA3FF;
}

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

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

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

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

    .page-gdpr__heading {
        font-size: clamp(1.3em, 4.5vw, 1.8em);
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-gdpr__paragraph,
    .page-gdpr__list-item,
    .page-gdpr__contact-item {
        font-size: 0.9em;
    }

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

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        padding: 10px;
    }

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

    .page-gdpr__hero-content {
        padding: 0 10px;
    }

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

    .page-gdpr__heading {
        font-size: clamp(1.1em, 5vw, 1.5em);
    }
}