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

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0047AB, #002D62);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-gdpr__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

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

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #0047AB;
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.page-gdpr__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #555;
}

.page-gdpr__list-item strong {
    color: #0047AB;
}

.page-gdpr__image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-section {
    text-align: center;
    background-color: #E0EBF7;
    padding: 80px 0;
}

.page-gdpr__contact-section .page-gdpr__paragraph {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
}

.page-gdpr__button--primary {
    background-color: #0047AB;
    color: #fff;
    border: 2px solid #0047AB;
}

.page-gdpr__button--primary:hover {
    background-color: #002D62;
    border-color: #002D62;
}

.page-gdpr__button--secondary {
    background-color: #FFD700;
    color: #0047AB;
    border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }
    .page-gdpr__subtitle {
        font-size: 1.1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__paragraph, .page-gdpr__list-item {
        font-size: 1em;
    }
    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
        display: block;
        margin: 10px auto;
    }
    .page-gdpr__image {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 2em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__hero {
        padding: 60px 0;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__contact-section {
        padding: 60px 0;
    }
}