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

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

.page-gdpr h1,
.page-gdpr h2,
.page-gdpr h3,
.page-gdpr h4,
.page-gdpr h5,
.page-gdpr h6 {
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr h1 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 900px;
}

.page-gdpr h2 {
    font-size: 2.2em;
    font-weight: 600;
    color: var(--gold-color);
    border-bottom: 2px solid var(--divider-color);
    padding-bottom: 10px;
    margin-top: 40px;
}

.page-gdpr h3 {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 30px;
}

.page-gdpr h4 {
    font-size: 1.4em;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 25px;
}

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

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

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

.page-gdpr ul,
.page-gdpr ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

.page-gdpr li {
    margin-bottom: 8px;
    color: var(--text-main);
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--deep-green);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px;
    text-align: center;
}

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

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

.page-gdpr__hero-content p {
    font-size: 1.15em;
    color: var(--text-secondary);
}

.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--background-color);
    border-radius: 8px;
}

.page-gdpr__section {
    margin-bottom: 50px;
}

.page-gdpr__image-container {
    margin: 30px 0;
    text-align: center;
}

.page-gdpr__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--button-gradient);
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-gdpr__faq-section {
    max-width: 900px;
    margin: 60px auto 40px auto;
    padding: 20px;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 15px;
}

.page-gdpr__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    font-weight: bold;
    color: var(--text-main);
    font-size: 1.1em;
    transition: color 0.3s ease;
    list-style: none;
}

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

.page-gdpr__faq-question:hover {
    color: var(--gold-color);
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
    padding: 10px 0 0 0;
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.5;
}

.page-gdpr__contact-section {
    text-align: center;
    padding: 50px 20px;
    background-color: var(--card-background);
    border-radius: 8px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-section h2 {
    color: var(--gold-color);
    border-bottom: none;
}

.page-gdpr__contact-section p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .page-gdpr h1 {
        font-size: 2.5em;
    }
    .page-gdpr h2 {
        font-size: 2em;
    }
    .page-gdpr h3 {
        font-size: 1.6em;
    }
}

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

    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-gdpr__hero-image {
        margin-bottom: 20px;
    }

    .page-gdpr__hero-content h1 {
        font-size: 2em;
        line-height: 1.2;
    }

    .page-gdpr__hero-content p {
        font-size: 1em;
    }

    .page-gdpr__content-area {
        padding: 20px 15px;
    }

    .page-gdpr h2 {
        font-size: 1.8em;
        margin-top: 30px;
    }

    .page-gdpr h3 {
        font-size: 1.4em;
        margin-top: 25px;
    }

    .page-gdpr h4 {
        font-size: 1.2em;
        margin-top: 20px;
    }

    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__faq-section,
    .page-gdpr__contact-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__cta-button,
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary,
    .page-gdpr a[class*="button"],
    .page-gdpr a[class*="btn"] {
        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;
        margin-bottom: 10px;
    }
    
    .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-direction: column !important;
        gap: 10px;
    }

    .page-gdpr__faq-section {
        padding: 15px;
    }
    .page-gdpr__contact-section {
        padding: 30px 15px;
    }
}