/* style/gdpr.css */

/* Base styles for the page-gdpr scope */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main for dark background */
    background-color: #08160F; /* Background color */
}

/* Ensure all images are responsive by default within the page scope */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Slight rounded corners for images */
    margin: 20px auto; /* Center images and provide spacing */
    filter: none; /* Explicitly remove any potential filter */
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, text below */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #08160F; /* Background color */
    text-align: center;
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 1200px; /* Max width for hero image */
    height: auto;
    object-fit: cover;
    margin-bottom: 40px; /* Space between image and text */
}

.page-gdpr__hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

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

/* CTA Button */
.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #ffffff; /* White text for button */
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-gdpr__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Content Sections */
.page-gdpr__content-section {
    padding: 80px 20px;
    border-bottom: 1px solid #1E3A2A; /* Divider color */
}

.page-gdpr__dark-bg {
    background-color: #11271B; /* Card BG for dark sections */
    color: #F2FFF6; /* Text Main */
}

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

.page-gdpr__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    color: #F2C14E; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-gdpr__sub-title {
    font-size: clamp(1.4em, 2.5vw, 2em);
    color: #57E38D; /* Glow for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.page-gdpr__image-content {
    margin: 40px auto;
    border: 1px solid #2E7A4E; /* Border color */
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.page-gdpr__list-item {
    background-color: #0A4B2C; /* Deep Green for list item background */
    color: #F2FFF6; /* Text Main */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #57E38D; /* Glow for accent */
}

.page-gdpr__list-item strong {
    color: #F2C14E; /* Gold for strong text */
    margin-right: 8px;
}

.page-gdpr__link {
    color: #57E38D; /* Glow color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #F2C14E; /* Gold on hover */
    text-decoration: underline;
}

/* FAQ Section */
.page-gdpr__faq-section {
    padding: 80px 20px;
    background-color: #11271B; /* Card BG */
    border-bottom: 1px solid #1E3A2A; /* Divider color */
}

.page-gdpr__faq-item {
    background-color: #0A4B2C; /* Deep Green for FAQ item */
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border color */
}

.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 browsers */
}

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

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    margin-left: 15px;
    color: #57E38D; /* Glow color */
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
}

/* Conclusion Section */
.page-gdpr__conclusion-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #08160F; /* Background color */
}

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

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

    .page-gdpr__main-title {
        font-size: 2.2em;
    }

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

    .page-gdpr__cta-button {
        width: 100% !important;
        max-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-button--large {
        font-size: 1.1em;
        padding: 15px 25px;
    }

    .page-gdpr__content-section,
    .page-gdpr__faq-section,
    .page-gdpr__conclusion-section {
        padding: 40px 15px;
    }

    .page-gdpr__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-gdpr__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

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

    .page-gdpr__list-item {
        padding: 12px 15px;
    }

    .page-gdpr__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    /* All images must be responsive */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto;
    }
}