.page-gdpr {
    font-family: Arial, sans-serif;
    color: #1F2D3D; /* Text Main */
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #F4F7FB; /* Background */
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(to bottom, #2F6BFF, #6FA3FF); /* Main and Secondary color for gradient */
    color: #FFFFFF;
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__hero-content {
    max-width: 900px;
    width: 100%;
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Using clamp for H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-gdpr__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__button:hover {
    opacity: 0.9;
    box-shadow: 0 4px 10px #A5C4FF; /* Glow color */
}

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

.page-gdpr__button--secondary:hover {
    background: #2F6BFF;
    color: #FFFFFF;
}


.page-gdpr__content-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #1F2D3D; /* Text Main */
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.page-gdpr__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #000000; /* Custom Color_1776249996415 */
}

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

.page-gdpr__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-gdpr__list-item::before {
    content: '✓'; /* Checkmark for list items */
    position: absolute;
    left: 0;
    color: #2F6BFF; /* Main color */
    font-weight: bold;
}

.page-gdpr__link {
    color: #2F6BFF; /* Main color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

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

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

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

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

    .page-gdpr__content-section {
        margin: 40px auto;
        padding: 25px;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 4.5vw, 2rem);
    }

    .page-gdpr__paragraph,
    .page-gdpr__list-item {
        font-size: 0.95rem;
    }

    .page-gdpr__hero-image,
    .page-gdpr__image {
        max-width: 100%;
        height: auto;
    }
}