/* style/gdpr.css */

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

/* Body background is handled by shared.css var(--bg) which is #08160F (dark). 
   Therefore, main text color should be light. */
.page-gdpr {
    background-color: var(--gdpr-background); /* Ensure consistent background */
    color: var(--gdpr-text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

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

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__hero-content {
    max-width: 900px;
    margin-top: 30px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gdpr-glow-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-gdpr__description {
    font-size: 1.1rem;
    color: var(--gdpr-text-secondary);
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gdpr-button-gradient);
    color: var(--gdpr-text-main);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__cta-button--secondary {
    background: none;
    border: 2px solid var(--gdpr-border-color);
    color: var(--gdpr-text-main);
    box-shadow: none;
}

.page-gdpr__cta-button--secondary:hover {
    background-color: rgba(46, 122, 78, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2rem;
}

.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    color: var(--gdpr-text-main);
}

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

.page-gdpr__card-bg {
    background-color: var(--gdpr-card-bg);
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--gdpr-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-gdpr__text-block {
    margin-bottom: 30px;
}

.page-gdpr__text-block p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--gdpr-text-main);
}

.page-gdpr__text-block strong {
    color: var(--gdpr-glow-color);
}

.page-gdpr__list,
.page-gdpr__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--gdpr-text-main);
}

.page-gdpr__ordered-list {
    list-style-type: decimal;
}

.page-gdpr__list li,
.page-gdpr__ordered-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-gdpr__list li strong,
.page-gdpr__ordered-list li strong {
    color: var(--gdpr-gold-color);
}

.page-gdpr__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__link-button {
    display: inline-block;
    margin-top: 20px;
    color: var(--gdpr-glow-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-gdpr__link-button:hover {
    color: var(--gdpr-gold-color);
}

.page-gdpr__contact-info {
    font-style: normal;
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--gdpr-text-main);
}

.page-gdpr__contact-info strong {
    color: var(--gdpr-glow-color);
}

.page-gdpr__contact-info a {
    color: var(--gdpr-glow-color);
    text-decoration: none;
}

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

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

.page-gdpr__faq-item {
    background-color: var(--gdpr-card-bg);
    border: 1px solid var(--gdpr-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-gdpr__faq-item[open] {
    background-color: var(--gdpr-deep-green);
    border-color: var(--gdpr-glow-color);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gdpr-text-main);
    list-style: none; /* For details/summary */
}

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
    color: var(--gdpr-gold-color);
}

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gdpr-glow-color);
    margin-left: 15px;
}

.page-gdpr__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: var(--gdpr-text-secondary);
}

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

.page-gdpr__final-cta-section {
    background-color: var(--gdpr-primary-color);
    padding: 80px 20px;
    text-align: center;
    color: var(--gdpr-text-main);
}

.page-gdpr__final-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--gdpr-text-main);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-gdpr__final-cta-description {
    font-size: 1.15rem;
    color: var(--gdpr-text-secondary);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        margin-top: 20px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    }
    .page-gdpr__description {
        font-size: 1rem;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }
    .page-gdpr__content-area {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 10px 0 30px 0;
    }
    .page-gdpr__hero-image-wrapper {
        max-height: 300px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }
    .page-gdpr__description {
        font-size: 0.95rem;
    }
    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .page-gdpr__content-area {
        padding: 30px 15px;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-gdpr__text-block p,
    .page-gdpr__list li,
    .page-gdpr__ordered-list li {
        font-size: 0.95rem;
    }
    .page-gdpr__faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    .page-gdpr__faq-answer {
        padding: 0 15px 15px 15px;
        font-size: 0.9rem;
    }
    .page-gdpr__final-cta-section {
        padding: 60px 15px;
    }
    .page-gdpr__final-cta-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-gdpr__final-cta-description {
        font-size: 1rem;
    }

    /* Mobile specific image/video/button responsiveness */
    .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__content-area,
    .page-gdpr__final-cta-section,
    .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-x: hidden !important; /* Prevent horizontal scroll */
    }
    .page-gdpr__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-gdpr__hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__cta-button,
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary,
    .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;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container {
        flex-direction: column !important;
        gap: 10px;
    }
}