.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light background */
    background-color: #FFFFFF;
}

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

.page-gdpr__hero-section {
    background-color: #26A9E0; /* Primary brand color */
    color: #FFFFFF; /* White text for primary brand color background */
    padding: 80px 0;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Desktop and mobile header offset */
}

.page-gdpr__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
}

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

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary {
    background-color: #EA7C07; /* Login color for primary CTA */
    color: #FFFFFF;
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    background-color: #d16b06;
}

.page-gdpr__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0; /* Primary brand color text */
    border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
    background-color: #f0f0f0;
}

.page-gdpr__content-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Light background for content */
    color: #333333; /* Dark text */
}

.page-gdpr__text-block {
    padding: 0 20px;
}

.page-gdpr__section-title {
    font-size: 2em;
    color: #26A9E0; /* Primary brand color for section titles */
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__content-section .page-gdpr__section-title {
    color: #26A9E0;
    text-align: left;
}

.page-gdpr__sub-section-title {
    font-size: 1.5em;
    color: #333333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr p {
    margin-bottom: 15px;
}

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

.page-gdpr__list li {
    margin-bottom: 10px;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    filter: none; /* Ensure no filter on images */
}

.page-gdpr__contact-info {
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #26A9E0;
}

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

.page-gdpr__contact-link {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

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

/* FAQ Section */
.page-gdpr__faq-list {
    margin-top: 30px;
}

.page-gdpr__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    color: #333333;
    background-color: #e0f2f7; /* Light blue from brand palette */
    border-bottom: 1px solid #d0e0e5;
    list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
}

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

.page-gdpr__faq-answer {
    padding: 20px 25px;
    background-color: #FFFFFF;
    color: #555555;
    border-top: 1px solid #eee;
}

.page-gdpr__faq-answer p {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 60px 20px;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-gdpr__main-title {
        font-size: 2em;
    }

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

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

    .page-gdpr__sub-section-title {
        font-size: 1.3em;
    }

    .page-gdpr__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.9em;
        margin-bottom: 10px; /* Space between stacked buttons */
    }

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

    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure image containers also adapt */
    .page-gdpr__content-section {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      overflow: hidden !important;
    }

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

    .page-gdpr__faq-answer {
        padding: 15px 20px;
        font-size: 0.9em;
    }
}