/* style/gdpr.css */

/* Core page styling based on dark background and light text */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
    font-size: 1rem;
}

/* Ensure content is centered and has max-width */
.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add some padding for smaller screens */
    box-sizing: border-box;
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding as body handles header offset */
    overflow: hidden; /* Prevent content overflow */
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    margin-top: 20px; /* Space between content and image */
    border-radius: 10px;
}

.page-gdpr__hero-content {
    max-width: 800px;
    margin-bottom: 30px;
}

.page-gdpr__main-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-gdpr__cta-button--secondary {
    background: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__cta-button--secondary:hover {
    background: #2E7A4E; /* Border color for hover */
    color: #F2FFF6;
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.page-gdpr__content-block p {
    max-width: 800px;
    text-align: justify;
    margin-bottom: 15px;
}

.page-gdpr__image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 800px;
}

.page-gdpr__list li {
    background-color: #11271B; /* Card BG */
    border-left: 4px solid #11A84E; /* Main color */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.page-gdpr__list li:hover {
    transform: translateX(5px);
}

.page-gdpr__list strong {
    color: #57E38D; /* Glow */
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 600px;
    text-align: center;
}

.page-gdpr__contact-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__contact-list a {
    color: #57E38D; /* Glow */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__contact-list a:hover {
    color: #F2C14E; /* Gold */
    text-decoration: underline;
}

.page-gdpr__cookies-policy p a {
    color: #57E38D; /* Glow */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__cookies-policy p a:hover {
    color: #F2C14E; /* Gold */
    text-decoration: underline;
}

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

.page-gdpr__faq-item {
    background-color: #11271B; /* Card BG */
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    border-bottom: 1px solid #2E7A4E; /* Border */
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: #1E3A2A; /* Divider */
}

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

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    content: "−";
}

.page-gdpr__faq-answer {
    padding: 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    background-color: #0A4B2C; /* Deep Green */
    line-height: 1.6;
}

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

/* Details element specific styling for FAQ */
.page-gdpr__faq-item summary {
    list-style: none; /* Remove default marker */
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    /* Mobile specific styles */
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    .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;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .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;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-gdpr__cta-buttons {
        display: flex;
        flex-direction: column;
    }

    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__content-block {
        flex-direction: column;
        gap: 20px;
    }

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

    /* Video responsiveness (if any, though not used here) */
    .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;
    }
    .page-gdpr__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__list li {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

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

    .page-gdpr__faq-toggle {
        font-size: 1.2rem;
    }

    .page-gdpr__faq-answer {
        padding: 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.5rem;
    }
    .page-gdpr__section-title {
        font-size: 1.3rem;
    }
}