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

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

.page-gdpr__hero {
    background-color: #0A2463;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    background-image: url('[GALLERY:bg:gdpr_hero_pattern,abstract,lines]');
    background-size: cover;
    background-position: center;
}

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

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

.page-gdpr__section {
    padding: 60px 0;
}

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

.page-gdpr__section-title {
    font-size: 2em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
}

.page-gdpr__content-block p {
    margin-bottom: 15px;
    color: #444;
}

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

.page-gdpr__grid-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-gdpr__grid-item h3 {
    color: #0A2463;
    font-size: 1.3em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

.page-gdpr__image--full-width {
    display: block;
    margin: 30px auto;
    max-width: 800px;
}

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

.page-gdpr__list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #444;
}

.page-gdpr__list strong {
    color: #0A2463;
}

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

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

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
    white-space: nowrap;
}

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

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

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

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

.page-gdpr__cta-section {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }

    .page-gdpr__hero-description {
        font-size: 1em;
    }

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

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

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 50px 0;
    }

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

    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}