/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    padding-bottom: 50px; /* Add some padding at the bottom */
}

/* Fixed header spacing - handled by shared.css body padding-top */
/* .page-gdpr__hero-section should have a small top padding, not var(--header-offset) */

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding */
    text-align: center;
    overflow: hidden; /* Ensure no content overflows */
    box-sizing: border-box;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for H1 font size */
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #A7D9B8; /* Text Secondary */
}

/* General Section Styling */
.page-gdpr__section {
    padding: 50px 20px;
    background-color: #08160F; /* Background */
    box-sizing: border-box;
}

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

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__keyword {
    color: #F2C14E; /* Gold for keywords */
    font-weight: bold;
}

/* Images within content */
.page-gdpr__image-content {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* List styles */
.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-gdpr__list-item {
    background-color: #11271B; /* Card BG */
    border-left: 4px solid #11A84E; /* Main Color */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #F2FFF6; /* Text Main */
    font-size: 1.05em;
}

.page-gdpr__list-item strong {
    color: #F2C14E; /* Gold */
}

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

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button Gradient */
    color: #F2FFF6; /* Text Main */
    border: none;
    margin: 10px;
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: #11A84E; /* Main Color */
    border: 2px solid #11A84E; /* Main Color */
    margin: 10px;
}

.page-gdpr__btn-secondary:hover {
    background-color: #11A84E; /* Main Color */
    color: #F2FFF6; /* Text Main */
    transform: translateY(-2px);
}

/* Inline links */
.page-gdpr__inline-link {
    color: #57E38D; /* Glow */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr__inline-link:hover {
    color: #F2C14E; /* Gold */
}

/* Contact Info Section */
.page-gdpr__contact-info {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__contact-item {
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 10px;
}

.page-gdpr__contact-item strong {
    color: #F2FFF6; /* Text Main */
}

/* CTA Section */
.page-gdpr__cta-section {
    background-color: #11271B; /* Card BG */
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #2E7A4E; /* Border */
    box-sizing: border-box;
}

.page-gdpr__cta-title {
    font-size: 2.2em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__cta-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}

/* FAQ Section */
.page-gdpr__faq {
    padding-top: 50px;
    padding-bottom: 50px;
}

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

.page-gdpr__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-gdpr__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6; /* Text Main */
    font-size: 1.15em;
    font-weight: bold;
    list-style: none; /* Hide default marker */
    outline: none;
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for Webkit */
}

.page-gdpr__faq-item summary:hover {
    background-color: #11A84E; /* Main Color */
}

.page-gdpr__faq-qtext {
    flex-grow: 1;
    color: #F2FFF6;
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #F2C14E; /* Gold */
}

.page-gdpr__faq-answer {
    padding: 20px 25px;
    background-color: #11271B; /* Card BG */
    color: #A7D9B8; /* Text Secondary */
    font-size: 1em;
    border-top: 1px solid #2E7A4E; /* Border */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }

    .page-gdpr__section-title {
        font-size: 2em;
    }

    .page-gdpr__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body already handles offset */
    }

    .page-gdpr__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-gdpr__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-gdpr__section {
        padding: 30px 15px;
    }

    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

    .page-gdpr__image-content {
        margin: 20px auto;
    }

    /* Mobile image responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-gdpr__container,
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__faq-list,
    .page-gdpr__contact-info,
    .page-gdpr__hero-section,
    .page-gdpr__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    
    /* Mobile video responsiveness (if any, though not explicitly used for this page) */
    .page-gdpr video,
    .page-gdpr__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-gdpr__video-section,
    .page-gdpr__video-container,
    .page-gdpr__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-gdpr__video-section {
        padding-top: 10px !important;
    }

    /* Mobile button responsiveness */
    .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: 10px 0 !important; /* Adjust margins for vertical stacking */
        padding: 12px 20px !important;
    }
    
    .page-gdpr__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px;
    }

    .page-gdpr__cta-title {
        font-size: 1.6em;
    }

    .page-gdpr__cta-description {
        font-size: 1em;
    }

    .page-gdpr__faq-item summary {
        font-size: 1em;
        padding: 15px 20px;
    }
}