/* style/gdpr.css */

/* --- Base Styles --- */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Assuming body is dark, text is light */
    background-color: transparent; /* Rely on body background from shared.css */
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    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-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
    margin-bottom: 40px; /* Space between image and text */
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 10;
    color: #ffffff; /* Text on dark background */
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF; /* White for dark background */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__intro-text {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0; /* Slightly off-white for contrast */
}

/* --- Content Area --- */
.page-gdpr__content-area {
    padding: 60px 0;
    background-color: #1a1a1a; /* A dark background for content sections */
    color: #ffffff;
}

.page-gdpr__section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #262626; /* Slightly lighter dark for sections */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 25px;
    color: #26A9E0; /* Primary brand color for titles */
    border-bottom: 2px solid rgba(38, 169, 224, 0.5);
    padding-bottom: 15px;
}

.page-gdpr__section-title--light {
    color: #FFFFFF; /* White for section titles on dark-section */
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.page-gdpr__text-block {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #e0e0e0; /* Light grey for body text */
}

.page-gdpr__text-block--light {
    color: #ffffff; /* Pure white text on dark-section */
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-gdpr__list li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #e0e0e0;
}

.page-gdpr__list--light li {
    color: #ffffff;
}

.page-gdpr__dark-section {
    background-color: #26A9E0; /* Primary brand color as background */
    color: #ffffff;
}

.page-gdpr__image-inline {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* --- Buttons --- */
.page-gdpr__btn-primary,
.page-gdpr__link-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #EA7C07; /* Login color for primary CTA */
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.page-gdpr__btn-primary:hover,
.page-gdpr__link-button:hover {
    background-color: #d16e06;
    transform: translateY(-2px);
}

/* --- FAQ Section --- */
.page-gdpr__faq-section {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 40px 0;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff;
}

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

.page-gdpr__faq-item {
    background-color: #262626; /* Slightly lighter dark for FAQ items */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    color: #e0e0e0;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #26A9E0; /* Primary color for questions */
    cursor: pointer;
    background-color: #333333; /* Darker background for question bar */
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: #444444;
}

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

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 15px;
    color: #ffffff; /* White toggle icon */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
    background-color: #444444;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    color: #EA7C07; /* Highlight toggle when open */
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* For <details> tag, hide default marker */
.page-gdpr__faq-item summary {
    list-style: none;
}
.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}


/* --- Responsive Design --- */
@media (max-width: 768px) {
    .page-gdpr__container {
        padding: 0 15px;
    }

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

    .page-gdpr__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-gdpr__main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .page-gdpr__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-gdpr__content-area {
        padding: 40px 0;
    }

    .page-gdpr__section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .page-gdpr__section-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .page-gdpr__text-block,
    .page-gdpr__list li,
    .page-gdpr__faq-answer {
        font-size: 0.95rem;
    }

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

    /* Mobile image responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important; /* Ensure width is 100% for full responsiveness */
        height: auto !important;
        display: block !important;
    }
    .page-gdpr__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    /* Mobile video responsiveness - no videos here, but for completeness */
    .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; /* Small top padding, body handles header offset */
    }

    /* Mobile button responsiveness */
    .page-gdpr__btn-primary,
    .page-gdpr__link-button,
    .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;
        margin-bottom: 10px; /* Add some space if stacked */
    }
    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container,
    .page-gdpr__section { /* General container for buttons */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
        flex-wrap: wrap !important; /* Allow buttons to wrap */
        gap: 10px;
    }
    .page-gdpr__cta-buttons {
        display: flex;
        flex-direction: column; /* Stack buttons vertically on mobile */
    }
}