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

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px; /* Space below hero content */
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
}

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

.page-gdpr__hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 20px; /* Space above hero content */
}

.page-gdpr__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: none;
}

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

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: #11A84E; /* Primary color */
    border: 2px solid #11A84E; /* Primary color */
}

.page-gdpr__btn-secondary:hover {
    background-color: rgba(17, 168, 78, 0.1);
    color: #2AD16F;
}

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

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

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

.page-gdpr__subsection-title {
    font-size: 1.6em;
    color: #22C768; /* Secondary color */
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

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

.page-gdpr__link {
    color: #2AD16F; /* Button gradient start color */
    text-decoration: underline;
}

.page-gdpr__link:hover {
    color: #57E38D; /* Glow */
}

.page-gdpr__list,
.page-gdpr__ordered-list {
    list-style-type: disc;
    color: #A7D9B8; /* Text Secondary */
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-gdpr__ordered-list {
    list-style-type: decimal;
}

.page-gdpr__list-item {
    margin-bottom: 8px;
}

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

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

.page-gdpr__card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    color: #F2FFF6; /* Text Main */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px #57E38D; /* Glow */
}

.page-gdpr__card-title {
    font-size: 1.3em;
    color: #22C768; /* Secondary color */
    margin-bottom: 10px;
}

.page-gdpr__card-text {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

.page-gdpr__faq-section {
    margin-top: 50px;
}

.page-gdpr__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-gdpr__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-gdpr__faq-item[open] {
    background-color: #0A4B2C; /* Deep Green */
    border-color: #57E38D; /* Glow */
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    list-style: none; /* Remove default marker for details */
}

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

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

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #22C768; /* Secondary color */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    color: #57E38D; /* Glow */
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
    max-height: 500px; /* Sufficient height for content */
    padding-top: 10px;
    transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}

.page-gdpr__updates p,
.page-gdpr__contact-us p {
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 20px;
}

.page-gdpr__contact-us .page-gdpr__cta-buttons {
    margin-top: 30px;
}

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

    .page-gdpr__main-title {
        font-size: 2.5em;
    }

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

    .page-gdpr__subsection-title {
        font-size: 1.4em;
    }

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

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

    .page-gdpr__hero-section {
        padding-bottom: 30px;
    }

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

    .page-gdpr__main-title {
        font-size: 1.8em;
        max-width: 95%;
    }

    .page-gdpr__description {
        font-size: 1em;
        max-width: 95%;
    }

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

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

    .page-gdpr__section {
        margin: 30px auto;
        padding: 15px;
    }

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

    .page-gdpr__subsection-title {
        font-size: 1.2em;
        margin-top: 25px;
    }

    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr__card {
        padding: 20px;
    }

    .page-gdpr__image-content {
        margin: 20px auto;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

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

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

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

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

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

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.5em;
    }

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

    .page-gdpr__subsection-title {
        font-size: 1.1em;
    }

    .page-gdpr__faq-question {
        font-size: 0.95em;
    }
}