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

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Fixed header spacing */
    background-color: #F4F7FB;
    gap: 20px;
}

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

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

.page-gdpr__hero-content {
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    background: #2F6BFF; /* Primary color as background */
    color: #ffffff; /* White text for contrast */
    box-sizing: border-box;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 2.8em);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__intro-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.page-gdpr__btn-secondary:hover {
    background: #2F6BFF;
    color: #ffffff;
}

.page-gdpr__content-area {
    padding: 40px 0;
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
}

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

.page-gdpr__section-title {
    font-size: clamp(1.8em, 3vw, 2.2em);
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 25px;
    text-align: left;
}

.page-gdpr__text-block {
    margin-bottom: 20px;
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
}

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

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1em;
}

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

.page-gdpr__contact-info {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__contact-info p {
    margin-bottom: 10px;
}

.page-gdpr__contact-link,
.page-gdpr__text-link {
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__contact-link:hover,
.page-gdpr__text-link:hover {
    text-decoration: underline;
}

.page-gdpr__faq-section {
    padding-bottom: 60px;
}

.page-gdpr__faq-list {
    margin-top: 30px;
}

.page-gdpr__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #1F2D3D;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    color: #000000; /* Custom Color_1776249996415 */
    list-style: none;
    user-select: none;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-gdpr__faq-item summary::marker {
    display: none;
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #2F6BFF;
    margin-left: 15px;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    content: "−";
}

.page-gdpr__faq-answer {
    padding: 0 20px 20px;
    font-size: 0.95em;
    color: #1F2D3D;
}

/* --- Color Contrast Fixes --- */
.page-gdpr__dark-section {
    background: #2F6BFF;
    color: #ffffff;
}

.page-gdpr__dark-section .page-gdpr__main-title,
.page-gdpr__dark-section .page-gdpr__intro-description {
    color: #ffffff;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        padding: 30px;
    }

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

    .page-gdpr__intro-description {
        font-size: 1em;
    }

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

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-gdpr__hero-section {
        flex-direction: column;
        padding-top: 10px !important;
        gap: 15px;
    }

    .page-gdpr__hero-image-wrapper {
        width: 100%;
        border-radius: 0;
    }

    .page-gdpr__hero-image {
        object-fit: contain !important; /* Ensure image is fully visible */
        max-height: none !important;
        aspect-ratio: unset !important;
        border-radius: 0;
    }

    .page-gdpr__hero-content {
        padding: 25px 15px;
        border-radius: 0;
    }

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

    .page-gdpr__intro-description {
        font-size: 0.95em;
        margin-bottom: 25px;
    }

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        padding: 12px 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-gdpr__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.5em, 5vw, 1.8em);
        margin-bottom: 20px;
    }

    .page-gdpr__text-block {
        font-size: 0.9em;
    }

    .page-gdpr__list {
        padding-left: 10px;
        font-size: 0.9em;
    }

    .page-gdpr__list-item {
        margin-bottom: 8px;
    }

    .page-gdpr__image-inline {
        margin: 15px auto;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-gdpr__contact-info {
        padding: 20px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .page-gdpr__faq-question {
        padding: 15px;
        font-size: 1em;
    }

    .page-gdpr__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.85em;
    }

    /* General image and container responsiveness for mobile */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}