/* style/gdpr.css */

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

.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: var(--dark-text-on-light); /* Default for light backgrounds */
    background-color: var(--background-color); /* Overall page background */
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: var(--background-color);
    color: var(--text-main-color);
}

.page-gdpr__dark-section {
    background-color: var(--background-color);
    color: var(--text-main-color);
}

.page-gdpr__card-bg {
    background-color: var(--card-bg);
    color: var(--text-main-color);
}

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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* body handles header offset, small top padding for visual */
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    position: relative;
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 30px;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
    position: relative; /* Ensure content is above image if needed, but not overlaying */
    margin-top: -150px; /* Pull content up slightly over the image if image is large */
    color: var(--text-main-color);
}

.page-gdpr__main-title {
    font-size: clamp(28px, 4vw, 48px); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-gdpr__intro-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary-color);
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary {
    background: var(--button-gradient);
    color: var(--light-text-on-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-gdpr__btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 20px;
}

.page-gdpr__btn-secondary:hover {
    background-color: rgba(34, 199, 104, 0.1);
    color: var(--gold-color);
    border-color: var(--gold-color);
}

/* General Content Styling */
.page-gdpr__section-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--gold-color);
    border-radius: 2px;
}

.page-gdpr__content-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-gdpr__text-block {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-secondary-color);
}

.page-gdpr__highlight {
    color: var(--gold-color);
    font-weight: 600;
}

.page-gdpr__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-gdpr__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-secondary-color);
}

.page-gdpr__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.page-gdpr__list-highlight {
    color: var(--text-main-color);
}

.page-gdpr__link {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.page-gdpr__image--centered {
    margin-left: auto;
    margin-right: auto;
}

/* Feature Grid */
.page-gdpr__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-gdpr__feature-item {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__feature-title {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

/* Content Grid */
.page-gdpr__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Rights Grid */
.page-gdpr__rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-gdpr__right-item {
    background-color: var(--background-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__right-title {
    font-size: 20px;
    color: var(--gold-color);
    margin-bottom: 10px;
}

/* Contact Info */
.page-gdpr__contact-info {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
    margin-bottom: 30px;
}

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

.page-gdpr__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main-color);
    cursor: pointer;
    background-color: var(--deep-green-color);
    border-bottom: 1px solid var(--border-color);
    list-style: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Safari */
    -khtml-user-select: none;    /* Konqueror HTML */
    -moz-user-select: none;      /* Old versions of Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-gdpr__faq-question::-webkit-details-marker {
    display: none;
}

.page-gdpr__faq-question::marker {
    display: none;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
    border-bottom: 1px solid var(--primary-color);
}

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

.page-gdpr__faq-toggle {
    font-size: 24px;
    line-height: 1;
    margin-left: 20px;
    color: var(--gold-color);
}

.page-gdpr__faq-answer {
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary-color);
    background-color: var(--card-bg);
}

/* CTA Section */
.page-gdpr__cta-container {
    text-align: center;
    padding: 40px 20px;
}

.page-gdpr__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        margin-top: -100px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__hero-content {
        margin-top: -50px; /* Adjust for smaller screens */
    }

    .page-gdpr__main-title {
        font-size: clamp(24px, 6vw, 36px);
    }

    .page-gdpr__intro-text {
        font-size: 16px;
    }

    .page-gdpr__section-title {
        font-size: clamp(20px, 5vw, 30px);
        margin-bottom: 25px;
    }

    .page-gdpr__content-subtitle {
        font-size: clamp(18px, 4vw, 24px);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-gdpr__text-block,
    .page-gdpr__list li,
    .page-gdpr__faq-answer p {
        font-size: 15px;
        line-height: 1.6;
    }

    .page-gdpr__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 15px;
        padding: 12px 20px;
        font-size: 16px;
    }

    .page-gdpr__button-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-gdpr__feature-grid,
    .page-gdpr__content-grid,
    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Image, Video, Button responsive rules */
    .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,
    .page-gdpr__hero-section,
    .page-gdpr__hero-image-wrapper,
    .page-gdpr__hero-content,
    .page-gdpr__feature-item,
    .page-gdpr__right-item,
    .page-gdpr__contact-info,
    .page-gdpr__faq-item,
    .page-gdpr__faq-question,
    .page-gdpr__faq-answer,
    .page-gdpr__cta-container,
    .page-gdpr__button-group {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }
    .page-gdpr__hero-section {
        padding-top: 10px !important;
    }
    .page-gdpr__faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    .page-gdpr__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-content {
        margin-top: -30px;
    }
    .page-gdpr__main-title {
        font-size: clamp(20px, 8vw, 30px);
    }
    .page-gdpr__intro-text {
        font-size: 14px;
    }
    .page-gdpr__section-title {
        font-size: clamp(18px, 6vw, 26px);
    }
    .page-gdpr__content-subtitle {
        font-size: clamp(16px, 5vw, 22px);
    }
    .page-gdpr__faq-question {
        font-size: 15px;
    }
}