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

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

.page-gdpr__hero-section {
    padding-top: 10px; /* Small top padding as per instruction */
    padding-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

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

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

.page-gdpr__btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

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

.page-gdpr__section-title {
    font-size: 2.2rem;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__text-block {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

.page-gdpr__dark-section {
    background-color: #11271B; /* Card BG */
    padding: 60px 0;
}

.page-gdpr__introduction-section .page-gdpr__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-gdpr__rights-section {
    padding: 60px 0;
}

.page-gdpr__rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__right-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #F2FFF6; /* Text Main */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-gdpr__right-card .page-gdpr__card-title {
    font-size: 1.4rem;
    color: #57E38D; /* Glow */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__right-card p {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__text-link {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

.page-gdpr__text-link:hover {
    color: #2AD16F;
}

.page-gdpr__data-processing-section {
    padding: 60px 0;
}

.page-gdpr__processing-item {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__processing-subtitle {
    font-size: 1.6rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 20px;
    color: #A7D9B8; /* Text Secondary */
}

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

.page-gdpr__list strong {
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__security-section {
    padding: 60px 0;
}

.page-gdpr__security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__security-card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__security-card .page-gdpr__security-icon {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.page-gdpr__security-card .page-gdpr__card-title {
    font-size: 1.3rem;
    color: #57E38D; /* Glow */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__security-card p {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__contact-section {
    padding: 60px 0;
    text-align: center;
}

.page-gdpr__contact-details {
    background-color: #0A4B2C; /* Deep Green */
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 40px auto 0;
    border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__contact-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
}

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

.page-gdpr__contact-info strong {
    color: #57E38D; /* Glow */
}

.page-gdpr__contact-link {
    color: #F2C14E; /* Gold */
    text-decoration: underline;
}

.page-gdpr__contact-link:hover {
    color: #FFD700;
}

.page-gdpr__cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-gdpr__btn-secondary {
    display: inline-block;
    background: #11271B; /* Card BG */
    color: #57E38D; /* Glow */
    border: 2px solid #57E38D;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-gdpr__btn-secondary:hover {
    background: #57E38D;
    color: #11271B;
}

.page-gdpr__faq-section {
    padding: 60px 0;
}

.page-gdpr__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__faq-item {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    user-select: none;
    list-style: none; /* For details summary */
}

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

.page-gdpr__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #57E38D; /* Glow */
    transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg); /* Change + to X */
}

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

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

/* --- Responsive Styles (Desktop/Tablet) --- */
@media (max-width: 1024px) {
    .page-gdpr__container {
        padding: 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

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

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

    .page-gdpr__rights-grid,
    .page-gdpr__security-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

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

    .page-gdpr__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

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

    .page-gdpr__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

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

    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-gdpr__hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-gdpr__cta-buttons {
        flex-direction: column !important;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-gdpr__text-block {
        font-size: 0.95rem;
    }

    .page-gdpr__dark-section,
    .page-gdpr__rights-section,
    .page-gdpr__data-processing-section,
    .page-gdpr__security-section,
    .page-gdpr__contact-section,
    .page-gdpr__faq-section {
        padding: 40px 0;
    }

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

    .page-gdpr__right-card,
    .page-gdpr__security-card {
        padding: 25px;
    }

    .page-gdpr__right-card .page-gdpr__card-title,
    .page-gdpr__security-card .page-gdpr__card-title {
        font-size: 1.2rem;
    }

    .page-gdpr__security-card .page-gdpr__security-icon {
        width: 150px;
        height: auto;
    }

    .page-gdpr__processing-item {
        padding: 25px;
        margin-bottom: 20px;
    }

    .page-gdpr__processing-subtitle {
        font-size: 1.4rem;
    }

    .page-gdpr__list {
        margin-left: 15px;
    }

    .page-gdpr__list li {
        font-size: 0.9rem;
    }

    .page-gdpr__contact-details {
        padding: 30px;
        margin: 30px auto 0;
    }

    .page-gdpr__contact-text,
    .page-gdpr__contact-info {
        font-size: 0.95rem;
    }

    .page-gdpr__faq-question {
        font-size: 1rem;
        padding: 18px 20px;
    }

    .page-gdpr__faq-answer {
        padding: 0 20px 18px;
        font-size: 0.95rem;
    }

    /* Ensure all images within content sections are responsive */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__rights-grid,
    .page-gdpr__security-grid,
    .page-gdpr__processing-item,
    .page-gdpr__contact-details,
    .page-gdpr__faq-list,
    .page-gdpr__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Override specific padding for container which already has it */
    .page-gdpr__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}