.page-gdpr {
    font-family: Arial, sans-serif;
    color: #1F2D3D;
    background-color: #F4F7FB;
    line-height: 1.6;
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding to account for fixed header */
    padding-bottom: 40px;
    background-color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-weight: bold;
    color: #1F2D3D;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-gdpr__description {
    font-size: 1.15rem;
    color: #1F2D3D;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-gdpr__cta-button--secondary {
    background: #6FA3FF;
}

.page-gdpr__cta-button--secondary:hover {
    background: #4A8BFF;
    box-shadow: 0 4px 10px rgba(111, 163, 255, 0.4);
}

.page-gdpr__section {
    padding: 60px 20px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__section--intro {
    background-color: #F4F7FB;
    box-shadow: none;
    border-radius: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

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

.page-gdpr__section-title {
    font-size: 2.2rem;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-gdpr__text {
    font-size: 1.05rem;
    color: #1F2D3D;
    margin-bottom: 20px;
    text-align: left;
}

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

.page-gdpr__grid-item {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-gdpr__feature-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__item-title {
    font-size: 1.4rem;
    color: #2F6BFF;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__item-text {
    font-size: 0.95rem;
    color: #1F2D3D;
}

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-gdpr__rights-item {
    background-color: #F4F7FB;
    border-left: 5px solid #2F6BFF;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.page-gdpr__rights-item .page-gdpr__item-title {
    font-size: 1.25rem;
    color: #2F6BFF;
    margin-bottom: 8px;
    text-align: left;
}

.page-gdpr__rights-item .page-gdpr__item-text {
    font-size: 1rem;
    color: #1F2D3D;
    text-align: left;
}

.page-gdpr__link {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__link:hover {
    text-decoration: underline;
}

.page-gdpr__section--contact {
    text-align: center;
}

.page-gdpr__section--update {
    background-color: transparent;
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 40px;
}

.page-gdpr__last-updated {
    font-size: 0.9rem;
    color: #1F2D3D;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    .page-gdpr__description {
        font-size: 1rem;
    }

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

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

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-bottom: 30px;
    }

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

    .page-gdpr__main-title {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
        margin-bottom: 10px;
    }

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

    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

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

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

    .page-gdpr__text {
        font-size: 0.9rem;
    }

    .page-gdpr__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-gdpr__feature-image {
        max-width: 100%;
        min-width: 200px;
        min-height: 200px;
    }

    .page-gdpr__item-title {
        font-size: 1.2rem;
    }

    .page-gdpr__item-text {
        font-size: 0.9rem;
    }

    .page-gdpr__rights-item {
        padding: 15px;
    }

    .page-gdpr__rights-item .page-gdpr__item-title {
        font-size: 1.1rem;
    }

    .page-gdpr__rights-item .page-gdpr__item-text {
        font-size: 0.95rem;
    }

    .page-gdpr__hero-image, .page-gdpr__feature-image {
        max-width: 100%;
        height: auto;
    }

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

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }

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

    .page-gdpr__cta-button {
        max-width: 250px;
    }
}