/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    color: #E0E0E0; /* Light grey for readability on dark background */
    background-color: #0A192F; /* Deep navy main background */
    line-height: 1.6;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A2E4B 100%); /* Slightly lighter gradient for hero */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
}

.page-gdpr__title {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: bold;
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.page-gdpr__hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-gdpr__introduction p,
.page-gdpr__rights p,
.page-gdpr__contact p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

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

.page-gdpr__grid-item {
    background-color: #1A2E4B; /* Slightly lighter navy for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

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

.page-gdpr__grid-item p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-gdpr__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

.page-gdpr__list li {
    background-color: #1A2E4B;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    color: #E0E0E0;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

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

.page-gdpr__contact {
    text-align: center;
}

.page-gdpr__btn {
    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__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

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

.page-gdpr__btn--secondary {
    background-color: #1A2E4B;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-gdpr__image-contact {
    max-width: 60%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
}

.page-gdpr__footer-note {
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    color: #A0A0A0;
    background-color: #071321;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }

    .page-gdpr__subtitle {
        font-size: 1em;
    }

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

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

    .page-gdpr__hero-image,
    .page-gdpr__image-fullwidth,
    .page-gdpr__image-contact {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 2em;
    }

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

    .page-gdpr__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}