/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #004AAD, #00287A);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-gdpr__hero .page-gdpr__container {
    position: relative;
    z-index: 1;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__hero-description a {
    color: #FFD700;
    text-decoration: underline;
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section--alt-bg {
    background-color: #eef4f8;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #004AAD;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__section-title a {
    color: #004AAD;
    text-decoration: none;
}

.page-gdpr__section-title a:hover {
    text-decoration: underline;
}

.page-gdpr__intro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-gdpr__intro-text a {
    color: #004AAD;
    text-decoration: underline;
}

.page-gdpr__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-gdpr__content-grid:nth-child(even) {
    flex-direction: row-reverse;
}

.page-gdpr__text-content {
    flex: 1;
    min-width: 300px;
}

.page-gdpr__text-content p {
    margin-bottom: 15px;
    color: #444;
}

.page-gdpr__text-content p a {
    color: #004AAD;
    text-decoration: underline;
}

.page-gdpr__image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image--right {
    margin-left: auto;
}

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

.page-gdpr__list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #004AAD;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #444;
}

.page-gdpr__list li strong {
    color: #004AAD;
}

.page-gdpr__list--numbered {
    list-style: decimal;
    padding-left: 20px;
}

.page-gdpr__list--numbered li {
    border-left: none;
    background-color: #f0f7fc;
    box-shadow: none;
    border-radius: 0;
    padding-left: 10px;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.page-gdpr__btn--primary {
    background-color: #FFD700;
    color: #004AAD;
    border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #004AAD;
    border: 2px solid #004AAD;
    margin-top: 20px;
}

.page-gdpr__btn--secondary:hover {
    background-color: #004AAD;
    color: #fff;
    transform: translateY(-2px);
}

.page-gdpr__btn--tertiary {
    background-color: #004AAD;
    color: #FFD700;
    border: 2px solid #004AAD;
}

.page-gdpr__btn--tertiary:hover {
    background-color: #00287A;
    border-color: #00287A;
    transform: translateY(-2px);
}

.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #555;
}

.page-gdpr__contact-info a {
    color: #004AAD;
    text-decoration: none;
}

.page-gdpr__contact-info a:hover {
    text-decoration: underline;
}

.page-gdpr__section--cta {
    background: linear-gradient(135deg, #004AAD, #00287A);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.page-gdpr__cta-content {
    position: relative;
    z-index: 1;
}

.page-gdpr__section--cta .page-gdpr__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-gdpr__section--cta .page-gdpr__section-title a {
    color: #FFD700;
}

.page-gdpr__section--cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-gdpr__section--cta p a {
    color: #FFD700;
    text-decoration: underline;
}

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

.page-gdpr__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__content-grid {
        flex-direction: column;
    }
    .page-gdpr__content-grid:nth-child(even) {
        flex-direction: column;
    }
    .page-gdpr__image {
        max-width: 100%;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__btn {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description,
    .page-gdpr__intro-text,
    .page-gdpr__section--cta p {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__list li {
        padding: 15px;
        font-size: 0.95em;
    }
}