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

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

.page-gdpr__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding */
    background-color: #2F6BFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.page-gdpr__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    color: #FFFFFF;
    background-color: rgba(47, 107, 255, 0.8); /* Slightly transparent background for text */
    margin-top: -5px; /* Adjust to sit below image */
    width: 100%;
    box-sizing: border-box;
}

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

.page-gdpr__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFFFFF;
}

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

.page-gdpr__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-gdpr__cta-button--secondary {
    background: #6FA3FF;
}

.page-gdpr__cta-button--secondary:hover {
    background: #2F6BFF;
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #1F2D3D;
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

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

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

.page-gdpr__numbered-list {
    list-style: decimal inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #1F2D3D;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.page-gdpr__link:hover {
    text-decoration: underline;
}

.page-gdpr__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-gdpr__image--right {
    float: right;
    margin-left: 30px;
    max-width: 50%;
}

.page-gdpr__image--left {
    float: left;
    margin-right: 30px;
    max-width: 50%;
}

/* Clear floats for responsive layout */
.page-gdpr__content-section::after {
    content: "";
    display: table;
    clear: both;
}

@media (max-width: 992px) {
    .page-gdpr__image--right,
    .page-gdpr__image--left {
        float: none;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

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

    .page-gdpr__hero-content {
        padding: 30px 15px;
    }

    .page-gdpr__cta-button {
        padding: 10px 20px;
    }

    .page-gdpr__container {
        padding: 15px;
    }

    .page-gdpr__image {
        max-width: 100%;
        height: auto;
        margin: 20px 0;
        max-width: 100%; /* Ensure images don't overflow */
        height: auto; /* Maintain aspect ratio */
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }

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

    .page-gdpr__hero-description,
    .page-gdpr__paragraph,
    .page-gdpr__list-item {
        font-size: 0.95em;
    }

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