/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #0a0a0a; /* Ensure consistency, though body handles it */
}

/* Fixed header spacing - Assuming shared.css handles body padding-top, so this section can start without additional top padding. */
.page-gdpr__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #26A9E0, #1a7bb7); /* Gradient using brand color */
    color: #ffffff;
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

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

.page-gdpr__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #ffffff; /* White title on dark background */
    line-height: 1.2;
}

.page-gdpr__intro-text {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f0f0f0;
}

.page-gdpr__content-section {
    padding: 60px 0;
    background-color: #0a0a0a; /* Dark background for content */
    color: #ffffff;
}

.page-gdpr__text-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-gdpr__section-title {
    font-size: 2em;
    color: #26A9E0; /* Brand color for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__text-block p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #f0f0f0; /* Light text for paragraphs */
}

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

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

.page-gdpr__faq-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for FAQ items */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #ffffff;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    color: #26A9E0; /* Brand color for FAQ questions */
    background-color: rgba(255, 255, 255, 0.08); /* Slightly darker for question header */
    transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
    color: #ffffff; /* White text for question text */
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #26A9E0; /* Brand color for toggle icon */
}

/* Hide default details marker */
.page-gdpr__faq-item summary {
    list-style: none;
}
.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-gdpr__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #f0f0f0; /* Light text for answers */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* CTA Section */
.page-gdpr__cta-section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1a7bb7, #26A9E0); /* Reverse gradient for CTA */
    color: #ffffff;
    margin-bottom: 40px;
    border-radius: 8px;
    max-width: 1200px;
    margin: 40px auto;
    box-sizing: border-box;
}

.page-gdpr__cta-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-gdpr__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #f0f0f0;
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* For mobile responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

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

.page-gdpr__btn-primary:hover {
    background-color: #1a7bb7;
    border-color: #1a7bb7;
    transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
    background-color: #EA7C07; /* Custom login color */
    color: #ffffff;
    border: 2px solid #EA7C07;
}

.page-gdpr__btn-secondary:hover {
    background-color: #d16b05;
    border-color: #d16b05;
    transform: translateY(-2px);
}

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

    .page-gdpr__hero-section {
        padding: 60px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
    }

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

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

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