/* style/gdpr.css */
:root {
    --gdpr-primary-color: #11A84E;
    --gdpr-secondary-color: #22C768;
    --gdpr-card-bg: #11271B;
    --gdpr-bg: #08160F;
    --gdpr-text-main: #F2FFF6;
    --gdpr-text-secondary: #A7D9B8;
    --gdpr-border: #2E7A4E;
    --gdpr-glow: #57E38D;
    --gdpr-gold: #F2C14E;
    --gdpr-divider: #1E3A2A;
    --gdpr-deep-green: #0A4B2C;
    --gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--gdpr-text-main); /* Default text color for dark body bg */
    background-color: var(--gdpr-bg); /* Ensure background is used */
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
    background-color: var(--gdpr-deep-green);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
    color: var(--gdpr-text-main);
}

.page-gdpr__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--gdpr-gold);
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3rem); /* Responsive font size for H1 */
}

.page-gdpr__hero-description {
    font-size: 1.15em;
    margin-bottom: 30px;
    color: var(--gdpr-text-secondary);
}

.page-gdpr__btn-primary {
    display: inline-block;
    background: var(--gdpr-button-gradient);
    color: var(--gdpr-text-main);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
}

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

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

.page-gdpr__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--gdpr-primary-color);
    font-weight: bold;
}

.page-gdpr__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: var(--gdpr-text-secondary);
}

.page-gdpr__text-block {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
    color: var(--gdpr-text-main);
}

.page-gdpr__highlight {
    color: var(--gdpr-gold);
    font-weight: bold;
}

.page-gdpr__inline-link {
    color: var(--gdpr-secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
    color: var(--gdpr-gold);
}

.page-gdpr__light-bg {
    background-color: var(--gdpr-bg);
    color: var(--gdpr-text-main);
}

.page-gdpr__dark-section {
    background-color: var(--gdpr-deep-green);
    color: var(--gdpr-text-main);
}

.page-gdpr__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__card {
    background-color: var(--gdpr-card-bg);
    border: 1px solid var(--gdpr-border);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gdpr-text-main);
}

.page-gdpr__card-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-gdpr__card-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--gdpr-gold);
    font-weight: bold;
}

.page-gdpr__card-text {
    font-size: 0.95em;
    color: var(--gdpr-text-secondary);
    text-align: left;
}

.page-gdpr__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    text-align: left;
}

.page-gdpr__content-block {
    display: flex;
    flex-direction: column;
}

.page-gdpr__sub-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--gdpr-primary-color);
    font-weight: bold;
}

.page-gdpr__image-full-width {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    display: block;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1em;
    color: var(--gdpr-text-secondary);
}

.page-gdpr__list-item strong {
    color: var(--gdpr-text-main);
}

.page-gdpr__list--contact .page-gdpr__list-item {
    font-size: 1.1em;
}

.page-gdpr__inline-link--contact {
    color: var(--gdpr-gold);
}

.page-gdpr__contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.page-gdpr__contact-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 30px;
    display: block;
}

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

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

.page-gdpr__faq-item {
    background-color: var(--gdpr-card-bg);
    border: 1px solid var(--gdpr-divider);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--gdpr-text-main);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    color: var(--gdpr-text-main);
    background-color: var(--gdpr-card-bg);
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-question:hover {
    background-color: var(--gdpr-deep-green);
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--gdpr-gold);
}

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

.page-gdpr__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--gdpr-text-secondary);
}

/* --- Responsive Styles --- */

@media (max-width: 992px) {
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-gdpr__hero-section {
        padding-bottom: 40px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 15px;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__container {
        padding: 0 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-gdpr__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-gdpr__grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-gdpr__card {
        padding: 20px;
    }
    .page-gdpr__card-title {
        font-size: 1.2em;
    }
    .page-gdpr__sub-title {
        font-size: 1.5em;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .page-gdpr__list-item {
        font-size: 0.95em;
    }
    .page-gdpr__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-gdpr__faq-answer {
        padding: 0 20px 15px 20px;
    }

    /* Mobile responsive images, videos, buttons (mandatory) */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

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

    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__hero-section,
    .page-gdpr__hero-content,
    .page-gdpr__video-section,
    .page-gdpr__video-container,
    .page-gdpr__video-wrapper,
    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-gdpr__btn-primary,
    .page-gdpr a[class*="button"],
    .page-gdpr a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__cta-buttons {
        display: flex;
        flex-direction: column !important;
        gap: 10px;
    }

    .page-gdpr__video-section {
        padding-top: 10px !important;
    }
}