.page-gdpr {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 50px; /* Add some space at the bottom before footer */
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding */
    padding-bottom: 40px;
    background-color: #08160F;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for hero image */
}

.page-gdpr__hero-content {
    text-align: center;
    padding: 30px 20px;
    max-width: 900px;
    margin-top: -100px; /* Overlay slightly on the image for visual effect, but not text on image */
    background: linear-gradient(180deg, rgba(17, 40, 27, 0.9) 0%, rgba(8, 22, 15, 0.95) 100%);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative; /* Ensure it's above other content */
    z-index: 10;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 5vw, 3em); /* Responsive font size */
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Button text color */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__cta-button--secondary {
    background: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    color: #F2FFF6;
}

.page-gdpr__cta-button--secondary:hover {
    background: #1E3A2A; /* Divider */
    box-shadow: 0 5px 15px rgba(46, 122, 78, 0.4);
}

.page-gdpr__section {
    padding: 60px 20px;
    background-color: #08160F; /* Background */
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #11A84E; /* Main color */
    border-radius: 2px;
}

.page-gdpr__text-block {
    font-size: 1.05em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__text-block strong {
    color: #57E38D; /* Glow */
}

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

.page-gdpr__list-item {
    background-color: #11271B; /* Card BG */
    border-left: 5px solid #11A84E; /* Main color */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #F2FFF6; /* Text Main */
    font-size: 1.05em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list-item strong {
    color: #57E38D; /* Glow */
}

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

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

.page-gdpr__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: #1E3A2A; /* Divider */
}

.page-gdpr__faq-qtext {
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    color: #57E38D; /* Glow */
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.7;
    text-align: justify;
}

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

.page-gdpr__faq-answer a {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__contact-info a {
    color: #57E38D; /* Glow */
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__contact-info a:hover {
    text-decoration: underline;
}

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

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

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

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

    .page-gdpr__hero-image {
        max-height: 350px;
    }

    .page-gdpr__hero-content {
        margin-top: -60px;
        padding: 20px 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.6em, 7vw, 2.2em);
    }

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

    /* Buttons responsiveness */
    .page-gdpr__cta-button {
        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;
    }

    .page-gdpr__section {
        padding: 40px 15px;
    }

    /* Containers responsiveness */
    .page-gdpr__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

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

    .page-gdpr__text-block,
    .page-gdpr__list-item,
    .page-gdpr__faq-question,
    .page-gdpr__faq-answer {
        font-size: 1em;
    }

    /* Images responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* FAQ item spacing */
    .page-gdpr__faq-item {
        margin-bottom: 10px;
    }

    /* Ensure button groups wrap */
    .page-gdpr__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-content {
        margin-top: -40px;
        padding: 15px 10px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.4em, 8vw, 2em);
    }

    .page-gdpr__section-title {
        font-size: 1.6em;
    }
}