.page-gdpr {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 20px;
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px 0 40px;
    background-color: #11271B;
    margin-bottom: 40px;
    border-bottom: 2px solid #1E3A2A;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
    font-weight: 700;
    line-height: 1.2;
    color: #F2FFF6;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.3);
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    color: #A7D9B8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
    min-width: 180px;
    text-align: center;
}

.page-gdpr__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-gdpr__section {
    padding: 40px 0;
    margin-bottom: 20px;
    background-color: #11271B;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section:last-of-type {
    margin-bottom: 0;
}

.page-gdpr__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-gdpr__section-title {
    font-size: 2em;
    color: #F2FFF6;
    margin-bottom: 25px;
    text-align: center;
    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: linear-gradient(90deg, #13994A 0%, #2AD16F 100%);
    border-radius: 2px;
}

.page-gdpr__text {
    font-size: 1em;
    color: #F2FFF6;
    margin-bottom: 20px;
}

.page-gdpr__text-secondary {
    font-size: 0.95em;
    color: #A7D9B8;
    margin-bottom: 15px;
}

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

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

.page-gdpr__list-item {
    background-color: #0A4B2C;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #2E7A4E;
    transition: background-color 0.3s ease;
}

.page-gdpr__list-item:hover {
    background-color: #0A4B2C;
}

.page-gdpr__list-title {
    font-size: 1.3em;
    color: #57E38D;
    margin-top: 0;
    margin-bottom: 10px;
}

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

.page-gdpr__right-card {
    background-color: #11271B;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #2E7A4E;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(87, 227, 141, 0.2);
}

.page-gdpr__card-title {
    font-size: 1.2em;
    color: #F2C14E;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-gdpr__text--small {
    font-size: 0.9em;
    text-align: center;
    color: #A7D9B8;
    margin-top: 20px;
}

.page-gdpr__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.page-gdpr__secondary-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #2AD16F;
    color: #2AD16F;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.page-gdpr__secondary-button:hover {
    background-color: #2AD16F;
    color: #08160F;
}

@media (max-width: 849px) {
    .page-gdpr__hero-section {
        padding-top: 10px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        padding: 0 10px;
    }

    .page-gdpr__hero-description {
        font-size: 1em;
        padding: 0 10px;
    }

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

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

    .page-gdpr__button-group {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__cta-button, .page-gdpr__secondary-button {
        width: 100%;
        max-width: 280px;
    }

    .page-gdpr__image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-gdpr__container {
        padding: 0 12px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.6em, 8vw, 2.2em);
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 549px) {
    .page-gdpr__hero-section {
        padding-top: 8px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5em, 9vw, 2em);
    }
    .page-gdpr__hero-description {
        font-size: 0.95em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__text {
        font-size: 0.9em;
    }
    .page-gdpr__list-title {
        font-size: 1.2em;
    }
    .page-gdpr__card-title {
        font-size: 1.1em;
    }
    .page-gdpr__cta-button, .page-gdpr__secondary-button {
        max-width: 100%;
    }
}