:root {
    --page-gdpr-background: #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%);
}

.page-gdpr {
    background-color: var(--page-gdpr-background);
    color: var(--page-gdpr-text-main); 
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px; 
    padding-top: 10px; 
    overflow: hidden; 
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 600px; 
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); 
}

.page-gdpr__hero-content {
    position: relative; 
    z-index: 1;
    max-width: 900px;
    margin-top: 20px; 
    padding: 20px;
    background-color: rgba(17, 39, 27, 0.8); 
    border-radius: 10px;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.5em); 
    color: var(--page-gdpr-text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

.page-gdpr__btn-primary {
    display: inline-block;
    background: var(--page-gdpr-button-gradient);
    color: var(--page-gdpr-text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-gdpr__btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--page-gdpr-text-main);
    border: 2px solid var(--page-gdpr-border);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.page-gdpr__btn-secondary:hover {
    background: var(--page-gdpr-deep-green);
    transform: translateY(-2px);
}

.page-gdpr__content-section {
    padding: 60px 20px;
}

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

.page-gdpr__section-title {
    font-size: 2.5em;
    color: var(--page-gdpr-text-main);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid var(--page-gdpr-divider);
    padding-bottom: 15px;
}

.page-gdpr__text-block {
    font-size: 1.1em;
    color: var(--page-gdpr-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--page-gdpr-text-secondary);
}

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

.page-gdpr__list-item strong {
    color: var(--page-gdpr-text-main);
}

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

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

.page-gdpr__image-wrapper {
    margin: 40px auto;
    text-align: center;
    max-width: 800px; 
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--page-gdpr-border);
}

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

.page-gdpr__faq-list {
    margin-top: 40px;
}

.page-gdpr__faq-item {
    background-color: var(--page-gdpr-card-bg);
    border: 1px solid var(--page-gdpr-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--page-gdpr-text-main);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--page-gdpr-deep-green);
    color: var(--page-gdpr-text-main);
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: var(--page-gdpr-border);
}

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

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

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(0deg); 
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1.05em;
    color: var(--page-gdpr-text-secondary);
    line-height: 1.6;
}

.page-gdpr__faq-answer p {
    margin-top: 15px;
    margin-bottom: 0;
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-gdpr__contact-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__contact-item strong {
    color: var(--page-gdpr-text-main);
    margin-right: 5px;
}

.page-gdpr__cta-section {
    background-color: var(--page-gdpr-card-bg);
    border: 1px solid var(--page-gdpr-border);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
}

.page-gdpr__cta-title {
    font-size: 2em;
    color: var(--page-gdpr-text-main);
    margin-bottom: 15px;
}

.page-gdpr__cta-description {
    font-size: 1.1em;
    color: var(--page-gdpr-text-secondary);
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; 
    }

    .page-gdpr__hero-content {
        padding: 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }

    .page-gdpr__description {
        font-size: 1em;
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        padding: 12px 25px;
        font-size: 0.95em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-bottom: 10px; 
    }

    .page-gdpr__cta-section .page-gdpr__btn-primary {
        margin-top: 20px; 
    }

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

    .page-gdpr__container {
        padding-left: 0;
        padding-right: 0;
    }

    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-gdpr__text-block,
    .page-gdpr__list-item,
    .page-gdpr__faq-answer,
    .page-gdpr__contact-item,
    .page-gdpr__cta-description {
        font-size: 0.95em;
    }

    .page-gdpr__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-gdpr__faq-answer {
        padding: 0 20px 15px 20px;
    }

    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-gdpr__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__hero-section,
    .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; 
    }

    .page-gdpr__hero-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-gdpr__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}