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

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #26A9E0; /* Brand primary color */
    color: #ffffff;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    min-height: 500px;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-gdpr__hero-content {
    max-width: 800px;
    z-index: 1;
    position: relative;
}

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

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-gdpr__btn-primary {
    display: inline-block;
    background-color: #EA7C07; /* Login color for primary CTA */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
}

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

.page-gdpr__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-gdpr__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
}

.page-gdpr__section {
    padding: 60px 20px;
    text-align: center;
}

.page-gdpr__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-gdpr__dark-bg {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand primary color */
}

.page-gdpr__section-title--white {
    color: #ffffff;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #333333;
}

.page-gdpr__paragraph--white {
    color: #f0f0f0;
}

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

.page-gdpr__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.page-gdpr__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
    color: #333333; /* Dark text for light card background */
}

.page-gdpr__feature-item:hover {
    transform: translateY(-5px);
}

.page-gdpr__feature-icon {
    width: 100%; /* Ensure images are responsive within card */
    height: auto;
    max-width: 250px; /* Adjust as needed, but >= 200px */
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-gdpr__feature-description {
    font-size: 1em;
    color: #555555;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 20px auto 40px auto;
    text-align: left;
}

.page-gdpr__list-item {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: #333333;
}

.page-gdpr__list-item--white {
    color: #f0f0f0;
}

.page-gdpr__list-item::before {
    content: '✓';
    color: #ffffff;
    background-color: #EA7C07;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8em;
    font-weight: bold;
}

.page-gdpr__list-item--white::before {
    color: #ffffff;
    background-color: #EA7C07;
}

.page-gdpr__accordion {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-gdpr__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333333;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: #f0f0f0;
}

.page-gdpr__faq-heading {
    font-size: 1.2em;
    margin: 0;
    color: #26A9E0;
}

.page-gdpr__faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #26A9E0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
    transform: rotate(45deg);
    color: #EA7C07;
}

.page-gdpr__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    color: #555555;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px !important;
}

.page-gdpr__faq-answer .page-gdpr__paragraph {
    margin-bottom: 0;
    text-align: left;
}

.page-gdpr__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-gdpr__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #26A9E0;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-gdpr__contact-info {
    max-width: 700px;
    margin: 40px auto;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    color: #333333;
}

.page-gdpr__contact-item {
    margin-bottom: 15px;
    font-size: 1.1em;
}

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

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

.page-gdpr__contact-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 30px auto 0 auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__paragraph,
    .page-gdpr__list-item,
    .page-gdpr__feature-description,
    .page-gdpr__contact-item {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Re-apply offset for mobile */
    }
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        padding: 12px 25px;
        font-size: 0.9em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-gdpr__section {
        padding: 40px 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-gdpr__feature-icon,
    .page-gdpr__contact-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-gdpr__container,
    .page-gdpr__accordion,
    .page-gdpr__contact-info {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-gdpr__faq-question {
        padding: 15px;
    }
    .page-gdpr__faq-heading {
        font-size: 1.1em;
    }
    .page-gdpr__faq-answer {
        padding: 0 15px;
    }
    .page-gdpr__faq-item.active .page-gdpr__faq-answer {
        padding: 15px !important;
    }
}