/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark body background */
    background-color: var(--secondary-color, #1A1A1A); /* Inherit from shared or fallback to dark grey */
}

/* Container for consistent content width */
.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-gdpr__hero-section {
    background-color: var(--secondary-color, #1A1A1A);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    /* Assuming shared.css handles body padding-top, no extra padding-top here */
}

.page-gdpr__main-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr__description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* CTA Buttons in Hero */
.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

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

.page-gdpr__btn-primary {
    background-color: #FFD700;
    color: #1A1A1A; /* Dark text for gold background */
    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 for dark background */
    border: 2px solid #FFD700;
}

.page-gdpr__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A; /* Dark text on hover */
}

/* Content Sections */
.page-gdpr__content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__content-section:last-of-type {
    border-bottom: none;
}

.page-gdpr__dark-bg {
    background-color: var(--secondary-color, #1A1A1A);
    color: #f0f0f0;
}

.page-gdpr__section-title {
    font-size: 2em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__text-block {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: inherit; /* Inherit color from parent section */
}

.page-gdpr__text-block a {
    color: #FFD700; /* Gold links */
    text-decoration: underline;
}

.page-gdpr__text-block a:hover {
    color: #e6c200;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Lists */
.page-gdpr__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: inherit;
}

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

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

/* Contact List */
.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-gdpr__contact-item {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: inherit;
}

.page-gdpr__contact-item a {
    color: #FFD700;
    text-decoration: underline;
}

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


/* FAQ Section */
.page-gdpr__faq-section {
    padding: 60px 0;
    background-color: var(--secondary-color, #1A1A1A);
    color: #f0f0f0;
}

.page-gdpr__faq-item {
    background-color: #2a2a2a; /* Slightly lighter dark background for FAQ item */
    margin-bottom: 15px;
    border-radius: 8px;
    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;
    background-color: #333333; /* Darker background for question */
    color: #FFD700; /* Gold for question text */
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.page-gdpr__faq-title {
    margin: 0;
    color: inherit; /* Inherit color from question */
}

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

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
    transform: rotate(45deg); /* Change to 'X' or '-' */
}

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

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

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

.page-gdpr__faq-answer a {
    color: #FFD700;
    text-decoration: underline;
}

.page-gdpr__faq-answer a:hover {
    color: #e6c200;
}

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

@media (max-width: 768px) {
    .page-gdpr__main-title {
        font-size: 1.8em;
    }
    .page-gdpr__description {
        font-size: 1em;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        width: 90%; /* Take more width on mobile */
        margin-bottom: 10px;
        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;
    }
    .page-gdpr__cta-buttons,
    .page-gdpr__button-group,
    .page-gdpr__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__text-block,
    .page-gdpr__list-item,
    .page-gdpr__contact-item,
    .page-gdpr__faq-question,
    .page-gdpr__faq-answer p {
        font-size: 0.95em;
    }

    /* Images responsive */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* No video section, so no specific video padding-top for mobile needed */
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.5em;
    }
    .page-gdpr__section-title {
        font-size: 1.3em;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        padding: 12px 20px;
    }
}

/* Ensure content area images are not small icons */
.page-gdpr__content-section img {
    min-width: 200px;
    min-height: 200px;
}
/* Ensure no CSS filter is used on images */
.page-gdpr img {
  filter: none;
}