/* style/gdpr.css */

/* --- General Page Styles (BEM Naming) --- */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

/* --- Hero Section --- */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
    background-color: #000000; /* Ensure dark background for hero */
}

.page-gdpr__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3; /* Slightly transparent overlay */
}

.page-gdpr__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* No filter to change color */
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-gdpr__main-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold heading */
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-gdpr__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* --- Buttons --- */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-gdpr__btn-primary {
    background-color: #FFD700; /* Gold */
    color: #000000; /* Black text for contrast */
    border: 2px solid #FFD700;
}

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

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-gdpr__btn-secondary:hover {
    background-color: #FFD700;
    color: #000000; /* Black text on hover */
}

/* --- Content Area --- */
.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #ffffff; /* Light text for dark body background */
}

.page-gdpr__container {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly visible background for readability */
    border-radius: 10px;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold */
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
}

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

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

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-gdpr__list-item strong {
    color: #FFD700; /* Gold for emphasis */
}

.page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
    /* No filter to change color */
}

.page-gdpr__image-container {
    text-align: center;
    margin-bottom: 30px;
}

.page-gdpr__contact-info {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.page-gdpr__contact-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-gdpr__contact-link {
    color: #FFD700; /* Gold link */
    text-decoration: underline;
}

.page-gdpr__contact-link:hover {
    color: #e6c200;
}

/* --- 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;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #8B0000; /* Dark Red background for question */
    color: #ffffff; /* White text for contrast */
    font-weight: bold;
    font-size: 1.15em;
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: #a00000; /* Slightly lighter red on hover */
}

.page-gdpr__faq-title {
    margin: 0;
    font-size: 1em; /* Relative to parent .page-gdpr__faq-question */
    color: #ffffff;
}

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

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

.page-gdpr__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05); /* Lighter background for answer */
    color: #f0f0f0;
}

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

/* --- Bottom CTA --- */
.page-gdpr__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #8B0000; /* Dark Red background for CTA */
    border-radius: 10px;
}

.page-gdpr__cta-bottom .page-gdpr__section-title {
    color: #FFD700; /* Gold title */
    margin-top: 0;
}

.page-gdpr__cta-bottom .page-gdpr__paragraph {
    margin-bottom: 30px;
    color: #f0f0f0;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        min-height: 500px;
        padding-top: var(--header-offset, 120px) !important; /* Adjust header offset for mobile */
    }
    .page-gdpr__main-title {
        font-size: 2em;
    }
    .page-gdpr__intro-description {
        font-size: 1em;
    }
    .page-gdpr__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-gdpr__content-area,
    .page-gdpr__container,
    .page-gdpr__faq-item,
    .page-gdpr__cta-bottom {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__paragraph,
    .page-gdpr__list-item,
    .page-gdpr__contact-text,
    .page-gdpr__faq-question {
        font-size: 0.95em;
    }
    .page-gdpr__faq-question {
        padding: 15px 20px;
    }
    .page-gdpr__faq-answer {
        padding: 15px 20px;
    }
    .page-gdpr__faq-item.active .page-gdpr__faq-answer {
        padding: 15px 20px !important;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.4em;
    }
    .page-gdpr__hero-content {
        padding: 15px;
    }
    .page-gdpr__intro-description {
        font-size: 0.9em;
    }
}

/* Ensure all content images meet min size requirements for content area */
.page-gdpr__content-area img {
    min-width: 200px;
    min-height: 200px;
}
/* For mobile, ensure images don't cause overflow */
@media (max-width: 768px) {
    .page-gdpr__content-area img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: unset;
        min-height: unset;
    }
}