/* style/gdpr.css */

/* General page styles for .page-gdpr */
.page-gdpr {
    color: #ffffff; /* Body background is #0a0a0a (dark), so text must be light */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Inherit from body or set specific section backgrounds */
}

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

.page-gdpr__section {
    padding: 40px 0;
    background-color: transparent; /* Default transparent, sections can override */
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    padding-bottom: 60px; /* Space below content */
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image wrapper */
    margin-bottom: 20px; /* Space between image and text */
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: #26A9E0; /* Brand color for main title */
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.page-gdpr__intro-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* Section Titles */
.page-gdpr__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #26A9E0;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-gdpr__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-gdpr__paragraph {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #ffffff;
}

/* Links within text */
.page-gdpr a {
    color: #26A9E0;
    text-decoration: underline;
}

.page-gdpr a:hover {
    color: #1a8cc7;
}

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

.page-gdpr__list-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly visible card-like background */
    border-left: 4px solid #26A9E0;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.page-gdpr__list-item:hover {
    transform: translateY(-5px);
}

.page-gdpr__list-title {
    font-size: 1.25rem;
    color: #26A9E0;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Images in content */
.page-gdpr__image-content {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Buttons */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    margin: 10px 5px;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box; /* For mobile responsiveness */
    white-space: normal; /* For mobile responsiveness */
    word-wrap: break-word; /* For mobile responsiveness */
}

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

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

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

.page-gdpr__btn-secondary:hover {
    background-color: #e0e0e0;
    color: #1a8cc7;
    border-color: #1a8cc7;
}

/* FAQ Section */
.page-gdpr__faq-list {
    margin-top: 30px;
}

.page-gdpr__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.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;
    font-size: 1.15rem;
    font-weight: 600;
    color: #26A9E0;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important; /* Small top padding, body handles header offset */
    }

    .page-gdpr__main-title {
        font-size: 2rem;
    }

    .page-gdpr__intro-text {
        font-size: 1rem;
    }

    .page-gdpr__section-title {
        font-size: 1.8rem;
    }

    .page-gdpr__sub-title {
        font-size: 1.3rem;
    }

    .page-gdpr__paragraph,
    .page-gdpr__list-item p,
    .page-gdpr__faq-question,
    .page-gdpr__faq-answer p {
        font-size: 0.95rem;
    }

    .page-gdpr__list-title {
        font-size: 1.1rem;
    }

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

    /* All containers with images/videos/buttons */
    .page-gdpr__section,
    .page-gdpr__container,
    .page-gdpr__hero-image-wrapper,
    .page-gdpr__faq-list,
    .page-gdpr__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    /* Button responsiveness */
    .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;
        margin: 10px 0 !important; /* Stack buttons vertically */
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__hero-content .page-gdpr__btn-primary {
        margin-top: 20px;
    }

    /* Button groups if any, stack them */
    .page-gdpr__button-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}