.page-gdpr {
    color: #F2FFF6; /* Text Main for dark background */
    font-family: 'Arial', sans-serif; /* Placeholder font */
    line-height: 1.6;
    background-color: #08160F; /* Background color */
}

/* Typography */
.page-gdpr__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 */
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-gdpr__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.page-gdpr__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #22C768; /* Auxiliary color for sub-titles */
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-gdpr__paragraph {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__intro-text {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-gdpr__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-gdpr__list-item strong {
    color: #22C768; /* Auxiliary color for emphasis */
}

/* Links */
.page-gdpr a {
    color: #22C768; /* Auxiliary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr a:hover {
    color: #57E38D; /* Glow color on hover */
    text-decoration: underline;
}

/* Sections & Containers */
.page-gdpr__section {
    padding: 60px 20px;
    position: relative;
}

.page-gdpr__section--intro {
    padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-gdpr__container--flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-gdpr__container--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__content-block {
    flex: 1;
}

.page-gdpr__image-block {
    flex: 0 0 40%; /* Adjust width as needed */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0; /* Remove default padding as image and content are separate */
    min-height: 400px; /* Minimum height for hero */
    background-color: #0A4B2C; /* Deep Green fallback */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px; /* Space between image and content */
}

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

.page-gdpr__hero-content {
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-bottom: 40px; /* Space from next section */
}

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

/* Buttons */
.page-gdpr__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
    max-width: 100%; /* Ensure button fits container */
    box-sizing: border-box;
}

.page-gdpr__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Reverse gradient on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.page-gdpr__cta-button--secondary {
    background: transparent;
    border: 2px solid #2AD16F;
    color: #2AD16F;
}

.page-gdpr__cta-button--secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    color: #57E38D;
    border-color: #57E38D;
}

.page-gdpr__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.page-gdpr__cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Contact List */
.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-gdpr__contact-item {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__contact-item strong {
    color: #22C768; /* Auxiliary color */
}

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

.page-gdpr__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden; /* For details tag native behavior */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    border-bottom: 1px solid #2E7A4E; /* Divider color */
    list-style: none; /* Hide default marker for summary */
}

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

.page-gdpr__faq-question .page-gdpr__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #2AD16F;
    transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or similar */
}

.page-gdpr__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    background-color: #0A4B2C; /* Slightly darker background for answer */
}

.page-gdpr__faq-answer .page-gdpr__paragraph:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__container--flex {
        flex-direction: column;
        gap: 30px;
    }
    .page-gdpr__image-block {
        flex: none;
        width: 100%;
    }
    .page-gdpr__hero-content {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-gdpr__main-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .page-gdpr__section-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-gdpr__sub-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    .page-gdpr__section {
        padding: 40px 15px;
    }
    .page-gdpr__container,
    .page-gdpr__hero-content,
    .page-gdpr__cta-wrapper,
    .page-gdpr__faq-list {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images */
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important; /* Ensure image takes full width */
    }

    /* Buttons */
    .page-gdpr__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 1rem;
    }
    .page-gdpr__cta-wrapper {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }
    .page-gdpr__hero-section {
        padding-bottom: 20px;
    }
    .page-gdpr__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-gdpr__hero-content {
        margin-bottom: 20px;
    }
    .page-gdpr__section--intro {
        padding-top: 10px !important; /* body handles header offset, this is for visual spacing */
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    .page-gdpr__sub-title {
        font-size: clamp(1.2rem, 7vw, 1.6rem);
    }
    .page-gdpr__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-gdpr__faq-answer {
        padding: 10px 20px 15px 20px;
    }
}