/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text on dark background */
    background-color: #0A2463; /* Main dark blue background */
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A2463, #1A3A73);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

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

.page-gdpr__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-gdpr__what-is-gdpr .page-gdpr__section-title,
.page-gdpr__our-commitment .page-gdpr__section-title,
.page-gdpr__your-rights .page-gdpr__section-title,
.page-gdpr__contact-us .page-gdpr__section-title {
    text-align: left;
    margin-bottom: 30px;
}

.page-gdpr__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-gdpr__grid--reverse {
    grid-template-areas: "image text";
}

.page-gdpr__grid--reverse .page-gdpr__text-content {
    grid-area: text;
}

.page-gdpr__grid--reverse .page-gdpr__image-wrapper {
    grid-area: image;
}

.page-gdpr__text-content h2 {
    color: #FFD700;
}

.page-gdpr__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-gdpr__text-content ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-gdpr__text-content ul li {
    margin-bottom: 10px;
}

.page-gdpr__image-wrapper {
    text-align: center;
}

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

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

.page-gdpr__commitment-item {
    background-color: #1A3A73;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-gdpr__commitment-item:hover {
    transform: translateY(-5px);
}

.page-gdpr__commitment-item .page-gdpr__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-gdpr__commitment-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-gdpr__commitment-item p {
    font-size: 1em;
    color: #e0e0e0;
}

.page-gdpr__contact-us p {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 10px;
}

.page-gdpr__contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

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

.page-gdpr__cta {
    background-color: #FFD700;
    padding: 60px 0;
    text-align: center;
    color: #0A2463;
}

.page-gdpr__cta-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #0A2463;
    font-weight: bold;
}

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

.page-gdpr__btn--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-gdpr__btn--primary:hover {
    background-color: #e6c200;
    color: #000000;
}

.page-gdpr__btn--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
    background-color: #1A3A73;
    color: #FFD700;
    border-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__grid--reverse {
        grid-template-areas: unset;
    }
    .page-gdpr__grid--reverse .page-gdpr__text-content,
    .page-gdpr__grid--reverse .page-gdpr__image-wrapper {
        grid-area: unset;
    }
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
        text-align: center;
    }
    .page-gdpr__what-is-gdpr .page-gdpr__section-title,
    .page-gdpr__our-commitment .page-gdpr__section-title,
    .page-gdpr__your-rights .page-gdpr__section-title,
    .page-gdpr__contact-us .page-gdpr__section-title {
        text-align: center;
    }
    .page-gdpr__hero-description,
    .page-gdpr__text-content p,
    .page-gdpr__text-content ul,
    .page-gdpr__contact-us p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__commitment-item h3 {
        font-size: 1.3em;
    }
    .page-gdpr__cta-title {
        font-size: 2em;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-gdpr__commitment-grid {
        grid-template-columns: 1fr;
    }
}