/* style/gdpr.css */
.page-gdpr {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: #08160F;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height of hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

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

.page-gdpr__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #F2FFF6;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.15rem;
    color: #A7D9B8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
}

.page-gdpr__btn-secondary:hover {
    background-color: #2AD16F;
    color: #08160F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: #11271B;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.page-gdpr__section:last-of-type {
    margin-bottom: 0;
}

.page-gdpr__introduction-section {
    background-color: #0A4B2C;
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-gdpr__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #57E38D;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__text-block {
    font-size: 1.05rem;
    color: #A7D9B8;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
}

.page-gdpr__list-item strong {
    color: #F2FFF6;
}

.page-gdpr__link {
    color: #57E38D;
    text-decoration: none;
    border-bottom: 1px solid #57E38D;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #2AD16F;
    border-color: #2AD16F;
}

.page-gdpr__image-text-block {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.page-gdpr__image-text-block--reversed {
    flex-direction: row-reverse;
}

.page-gdpr__image-block {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    object-fit: cover;
    max-width: 100%;
    height: auto;
    display: block;
}

.page-gdpr__text-content {
    flex: 2;
    min-width: 300px;
}

.page-gdpr__rights-list {
    list-style-type: none;
    padding-left: 0;
}

.page-gdpr__rights-list .page-gdpr__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.page-gdpr__rights-list .page-gdpr__list-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #57E38D;
    font-size: 1.2rem;
    top: 0;
}

.page-gdpr__contact-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-gdpr__contact-list .page-gdpr__list-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #F2FFF6;
}

.page-gdpr__faq-section {
    background-color: #0A4B2C;
}

.page-gdpr__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-gdpr__faq-item {
    background-color: #11271B;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2E7A4E;
    transition: all 0.3s ease;
}

.page-gdpr__faq-item[open] {
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.3);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F2FFF6;
    user-select: none;
    list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #57E38D;
}

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

.page-gdpr__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #A7D9B8;
    line-height: 1.6;
}

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

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

    .page-gdpr__image-text-block {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__image-text-block--reversed {
        flex-direction: column;
    }

    .page-gdpr__image-block,
    .page-gdpr__text-content {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__container {
        padding: 15px;
    }

    .page-gdpr__hero-section {
        padding-bottom: 40px;
    }

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

    .page-gdpr__hero-description {
        font-size: 1rem;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-gdpr__sub-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .page-gdpr__text-block,
    .page-gdpr__list-item,
    .page-gdpr__faq-answer {
        font-size: 0.95rem;
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
        width: 100% !important;
        max-width: 100% !important;
    }

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .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;
    }

    .page-gdpr__hero-image-wrapper {
        padding: 0 15px;
        box-sizing: border-box;
    }

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

    .page-gdpr__faq-answer {
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
    }

    .page-gdpr__section-title {
        font-size: clamp(1.4rem, 8vw, 1.8rem);
    }
}