/* style/gdpr.css */

/* Custom Colors */
:root {
    --page-gdpr-bg: #08160F;
    --page-gdpr-card-bg: #11271B;
    --page-gdpr-text-main: #F2FFF6;
    --page-gdpr-text-secondary: #A7D9B8;
    --page-gdpr-border: #2E7A4E;
    --page-gdpr-glow: #57E38D;
    --page-gdpr-gold: #F2C14E;
    --page-gdpr-divider: #1E3A2A;
    --page-gdpr-deep-green: #0A4B2C;
    --page-gdpr-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --primary-color: #11A84E; /* Main color */
    --secondary-color: #22C768; /* Auxiliary color */
}

.page-gdpr {
    background-color: var(--page-gdpr-bg);
    color: var(--page-gdpr-text-main);
    font-family: 'Arial', sans-serif; /* Placeholder font */
    line-height: 1.6;
    font-size: 16px;
    padding-bottom: 40px; /* Ensure space above footer */
}

/* Typography */
.page-gdpr__main-title {
    font-size: clamp(28px, 4vw, 48px); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    color: var(--page-gdpr-text-main);
    margin-bottom: 20px;
    max-width: 900px;
    text-align: center;
}

.page-gdpr__section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: var(--page-gdpr-text-main);
    margin-bottom: 25px;
    padding-top: 20px;
    text-align: center;
}

.page-gdpr__paragraph {
    margin-bottom: 15px;
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__list {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.page-gdpr__list-item {
    margin-bottom: 8px;
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__link {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-gdpr__link:hover {
    color: var(--page-gdpr-glow);
    text-decoration: none;
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
    background-color: var(--page-gdpr-bg);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Max width for image */
    margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.page-gdpr__description {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--page-gdpr-text-secondary);
}

/* Content Area */
.page-gdpr__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--page-gdpr-card-bg); /* Use card background for content blocks */
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__content-area:first-of-type {
    margin-top: 30px; /* Gap between hero and first content section */
}

/* Images within content */
.page-gdpr__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* CTA Section */
.page-gdpr__cta-section {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--page-gdpr-deep-green);
    border-radius: 8px;
    margin: 30px auto;
    max-width: 1000px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-title {
    font-size: clamp(26px, 3.5vw, 40px);
    color: var(--page-gdpr-text-main);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-gdpr__cta-description {
    font-size: 18px;
    color: var(--page-gdpr-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--page-gdpr-button-gradient);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    max-width: 100%; /* Default for desktop */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    opacity: 0.9;
}

/* FAQ Section (if added later, structure for details/summary) */
.page-gdpr__faq-item {
    background-color: var(--page-gdpr-card-bg);
    border: 1px solid var(--page-gdpr-border);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.page-gdpr__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--page-gdpr-text-main);
    cursor: pointer;
    outline: none;
    list-style: none; /* Hide default marker */
}

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

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

.page-gdpr__faq-toggle {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-left: 15px;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    color: var(--page-gdpr-glow);
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    color: var(--page-gdpr-text-secondary);
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        padding: 0 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(26px, 3.8vw, 44px);
    }
    .page-gdpr__description {
        font-size: 17px;
    }
    .page-gdpr__content-area {
        padding: 30px 15px;
    }
    .page-gdpr__section-title {
        font-size: clamp(22px, 2.8vw, 32px);
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 15px;
        padding-bottom: 20px;
    }

    /* Images responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-gdpr__hero-image-wrapper,
    .page-gdpr__content-area,
    .page-gdpr__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    /* Video responsiveness (if any, though not for this page) */
    .page-gdpr video,
    .page-gdpr__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-gdpr__video-section,
    .page-gdpr__video-container,
    .page-gdpr__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-gdpr__video-section {
        padding-top: 10px !important; /* Small top padding, body handles --header-offset */
    }
    .page-gdpr__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Buttons responsiveness */
    .page-gdpr__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
    }
    .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__cta-buttons {
        display: flex;
        flex-direction: column;
    }

    .page-gdpr__main-title {
        font-size: clamp(24px, 6vw, 36px);
        margin-bottom: 15px;
    }
    .page-gdpr__description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .page-gdpr__section-title {
        font-size: clamp(20px, 5vw, 28px);
        margin-bottom: 20px;
    }
    .page-gdpr__paragraph,
    .page-gdpr__list-item {
        font-size: 15px;
    }
    .page-gdpr__hero-section {
        padding: 10px 15px 40px;
    }
    .page-gdpr__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-gdpr__cta-title {
        font-size: clamp(22px, 5.5vw, 32px);
    }
    .page-gdpr__cta-description {
        font-size: 16px;
    }
    .page-gdpr__faq-item summary {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-gdpr__faq-answer {
        padding: 0 20px 15px;
    }
}

/* Ensure color contrast for dark background */
.page-gdpr {
    color: var(--page-gdpr-text-main); /* F2FFF6, light color */
}
.page-gdpr__card,
.page-gdpr__content-area {
    background: var(--page-gdpr-card-bg); /* 11271B, dark color */
    color: var(--page-gdpr-text-main); /* F2FFF6, light color */
}
.page-gdpr p,
.page-gdpr li {
    color: var(--page-gdpr-text-secondary); /* A7D9B8, light color */
}
.page-gdpr__link {
    color: var(--secondary-color); /* 22C768, light green */
}
.page-gdpr__cta-button {
    background: var(--page-gdpr-button-gradient); /* Gradient, darkish */
    color: #ffffff; /* White, light color */
}
/* Ensure all text elements have appropriate color for the dark background */
.page-gdpr__main-title,
.page-gdpr__section-title,
.page-gdpr__cta-title {
    color: var(--page-gdpr-text-main);
}
.page-gdpr__faq-item summary {
    color: var(--page-gdpr-text-main);
}
.page-gdpr__faq-toggle {
    color: var(--secondary-color);
}