/* style/gdpr.css */

/* --- Base Styles and Typography --- */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

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

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

.page-gdpr__section-title {
    font-size: 2.5rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-gdpr__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2FFF6; /* Text Main */
    max-width: 900px; /* To prevent title from being too wide */
    margin: 0 auto 20px auto;
}

.page-gdpr__description,
.page-gdpr__paragraph {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__list-item {
    background-color: #11271B; /* Card BG */
    border-left: 4px solid #11A84E; /* Main Color */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    color: #F2FFF6; /* Text Main */
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__text-link {
    color: #2AD16F; /* Button top color */
    text-decoration: underline;
}

.page-gdpr__text-link:hover {
    color: #13994A; /* Button bottom color */
}

/* --- 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, body handles header offset */
    box-sizing: border-box;
    overflow: hidden; /* Ensure no overflow from images */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-gdpr__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    min-width: 200px;
    min-height: 200px;
    filter: none; /* Ensure no filter is used on images */
}

.page-gdpr__hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1; /* Ensure content is above any subtle background effects */
}

/* --- CTA Buttons --- */
.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%; /* Ensure container takes full width for responsive wrapping */
    max-width: 600px; /* Constrain button group width */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
    max-width: 100%; /* Ensure button itself is responsive */
    flex-grow: 1; /* Allow buttons to grow */
    min-width: 200px; /* Minimum width for readability */
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4); /* Shadow from Green Gold */
}

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

.page-gdpr__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Button top color */
    border: 2px solid #2AD16F;
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.2);
}

.page-gdpr__btn-secondary:hover {
    background: #2AD16F;
    color: #08160F; /* Background color for contrast */
    box-shadow: 0 8px 20px rgba(42, 209, 111, 0.4);
}

/* --- Section Specific Styles --- */
.page-gdpr__dark-section {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__dark-section .page-gdpr__section-title {
    color: #F2FFF6;
}

.page-gdpr__dark-section .page-gdpr__paragraph {
    color: #A7D9B8;
}

.page-gdpr__content-image {
    display: block;
    width: 100%;
    max-width: 800px; /* Max width for content images */
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
    filter: none; /* Ensure no filter is used on images */
}

.page-gdpr__contact-info {
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: #0A4B2C; /* Deep Green */
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    overflow: hidden;
}

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

.page-gdpr__contact-item:last-child {
    margin-bottom: 0;
}

/* --- FAQ Section --- */
.page-gdpr__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
}

.page-gdpr__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.page-gdpr__faq-item summary {
    list-style: none; /* Hide default marker */
}

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

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2rem;
    color: #F2FFF6; /* Text Main */
    background-color: #0A4B2C; /* Deep Green */
    transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #57E38D; /* Glow */
    line-height: 1;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    content: '−'; /* Change to minus when open */
}

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

/* --- Copyright --- */
.page-gdpr__copyright {
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #1E3A2A; /* Divider */
    margin-top: 40px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-gdpr__section-title {
        font-size: 2rem;
    }
    .page-gdpr__main-title {
        font-size: 2.8rem;
    }
    .page-gdpr__description,
    .page-gdpr__paragraph,
    .page-gdpr__list-item {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .page-gdpr__main-title {
        font-size: 2.2rem; /* h1 size */
        margin-bottom: 15px;
    }
    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* body handles header offset */
    }
    .page-gdpr__hero-image-wrapper {
        margin-bottom: 30px;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        padding: 0 15px; /* Add padding to button container */
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 1rem;
    }
    .page-gdpr__container {
        padding: 0 15px;
    }
    .page-gdpr p,
    .page-gdpr li {
        font-size: 16px; /* Ensure minimum font size for readability */
        line-height: 1.6;
    }
    .page-gdpr__list {
        margin-left: 0;
        margin-right: 0;
    }
    .page-gdpr__list-item {
        padding: 12px 15px;
    }
    .page-gdpr__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 30px auto;
    }
    .page-gdpr__contact-info {
        padding: 20px 25px;
    }
    .page-gdpr__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }
    .page-gdpr__faq-answer {
        padding: 15px 20px;
    }

    /* Mobile image and video responsive rules (re-iterated for clarity and strictness) */
    .page-gdpr img {
        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-image-wrapper,
    .page-gdpr__cta-buttons,
    .page-gdpr__contact-info,
    .page-gdpr__faq-list,
    .page-gdpr__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Crucial to prevent horizontal scroll */
    }
    /* Specific padding for sections in mobile to prevent content from touching edges */
    .page-gdpr__section > .page-gdpr__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    /* For elements that might have their own padding, ensure they also have max-width */
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}