/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Inherit from body, which is #121212 */
}

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

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: rgba(38, 169, 224, 0.1); /* Light transparent blue tint */
    padding-bottom: 60px;
}

.page-gdpr__hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.page-gdpr__main-heading {
    font-size: 3.2em;
    color: #26A9E0; /* Brand color for main heading */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr__intro-paragraph {
    font-size: 1.1em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-gdpr__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-gdpr__cta-buttons--center {
    justify-content: center;
    margin-top: 40px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text break */
}

.page-gdpr__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-gdpr__btn-primary:hover {
    background-color: #1a8cc2;
    border-color: #1a8cc2;
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-gdpr__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-gdpr__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-area {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for content section */
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
}

.page-gdpr__section-heading {
    font-size: 2.5em;
    color: #26A9E0;
    margin-bottom: 30px;
    text-align: center;
    padding-top: 20px;
}

.page-gdpr__sub-heading {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-gdpr__paragraph {
    font-size: 1.05em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

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

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

.page-gdpr__list strong {
    color: #ffffff;
}

.page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-info {
    margin-top: 30px;
    text-align: center;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-gdpr__contact-info a {
    color: #26A9E0;
    text-decoration: none;
}

.page-gdpr__contact-info a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-gdpr__faq-section {
    background-color: rgba(38, 169, 224, 0.1); /* Light transparent blue tint */
    border-radius: 10px;
    padding: 40px;
}

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

.page-gdpr__faq-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #ffffff;
    background-color: rgba(38, 169, 224, 0.2); /* Brand color tint */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: rgba(38, 169, 224, 0.3);
}

.page-gdpr__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1em; /* Adjust to fit parent font size */
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #26A9E0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
    transform: rotate(45deg);
    color: #ffffff;
}

.page-gdpr__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #e0e0e0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px;
}

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

.page-gdpr__faq-answer a {
    color: #26A9E0;
    text-decoration: none;
}

.page-gdpr__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__hero-section {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .page-gdpr__hero-content {
        max-width: 100%;
    }

    .page-gdpr__hero-image-wrapper {
        max-width: 80%;
    }

    .page-gdpr__main-heading {
        font-size: 2.5em;
    }

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

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

    .page-gdpr__hero-section {
        padding-top: var(--header-offset, 120px) !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-gdpr__main-heading {
        font-size: 2em;
    }

    .page-gdpr__intro-paragraph {
        font-size: 1em;
    }

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px; /* Add padding to container to prevent overflow */
    }

    .page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
    }

    .page-gdpr__hero-image-wrapper {
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-gdpr__hero-image,
    .page-gdpr__content-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    .page-gdpr__content-area,
    .page-gdpr__faq-section {
        padding: 30px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__section-heading {
        font-size: 1.8em;
    }

    .page-gdpr__sub-heading {
        font-size: 1.5em;
    }

    .page-gdpr__faq-question {
        padding: 15px;
        font-size: 1.1em;
    }
    .page-gdpr__faq-answer {
        padding: 0 15px;
    }
    .page-gdpr__faq-item.active .page-gdpr__faq-answer {
        padding: 15px;
    }
}

/* Ensure content area images are at least 200x200px */
.page-gdpr__content-area img {
    min-width: 200px;
    min-height: 200px;
}
/* No CSS filters allowed */
.page-gdpr img {
    filter: none;
}