/* style/gdpr.css */
:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --dark-background: #1a1a2e;
    --light-text: #FFFFFF;
    --dark-text: #333333;
    --login-button-color: #EA7C07;
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: var(--light-text); /* Default text color for the page due to shared body background */
    line-height: 1.6;
    background-color: transparent; /* Body background handled by shared.css */
}

.page-gdpr__hero-section {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--light-text);
    overflow: hidden;
}

.page-gdpr__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--light-text);
    line-height: 1.2;
}

.page-gdpr__description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-gdpr__btn-primary {
    background-color: var(--login-button-color);
    color: var(--light-text);
    border: 2px solid var(--login-button-color);
}

.page-gdpr__btn-primary:hover {
    background-color: darken(var(--login-button-color), 10%);
    border-color: darken(var(--login-button-color), 10%);
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.page-gdpr__btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
}

.page-gdpr__content-section {
    padding: 80px 20px;
    background-color: var(--secondary-color);
    color: var(--dark-text);
}

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

.page-gdpr__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 30px;
    color: var(--dark-text);
}

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

.page-gdpr__list-item strong {
    color: var(--primary-color);
}

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

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

.page-gdpr__faq-item {
    background-color: var(--light-text);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--dark-text);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    background-color: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
}

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

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg);
}

.page-gdpr__faq-answer {
    padding: 20px;
    font-size: 1.1em;
    color: var(--dark-text);
    border-top: none;
}

.page-gdpr__cta-section {
    padding: 80px 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--light-text);
}

.page-gdpr__cta-section .page-gdpr__section-title {
    color: var(--light-text);
}

.page-gdpr__cta-section .page-gdpr__paragraph {
    color: var(--light-text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

/* Links within content */
.page-gdpr__content-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-gdpr__content-section a:hover {
    color: darken(var(--primary-color), 10%);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 80px 15px;
    }
    .page-gdpr__main-title {
        font-size: 2.2em;
    }
    .page-gdpr__description,
    .page-gdpr__paragraph,
    .page-gdpr__list-item,
    .page-gdpr__faq-answer p {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__sub-title {
        font-size: 1.4em;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        width: 100% !important;
        padding: 12px 20px;
    }
    .page-gdpr__content-section,
    .page-gdpr__cta-section {
        padding: 60px 15px;
    }
    .page-gdpr__container {
        padding: 0 10px;
    }
    .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: 10px;
        padding-right: 10px;
    }
    .page-gdpr__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-gdpr__faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__sub-title {
        font-size: 1.2em;
    }
}