/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    line-height: 1.6;
    background-color: #0A192F;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A192F 0%, #3a4b63 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    border-bottom: 2px solid #FFD700;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.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;
    border: none;
    cursor: pointer;
}

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

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

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

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

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

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

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

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

.page-gdpr__subtitle {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #f5e6d0;
}

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

.page-gdpr__content-grid--reversed {
    flex-direction: row-reverse;
}

.page-gdpr__text-content {
    flex: 1;
    color: #f5e6d0;
}

.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;
}

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

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

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

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

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

.page-gdpr__right-card {
    background-color: #0A192F;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-gdpr__right-card:hover {
    transform: translateY(-5px);
}

.page-gdpr__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-gdpr__card-description {
    font-size: 1em;
    color: #f5e6d0;
}

.page-gdpr__contact-cta {
    text-align: center;
    margin-top: 50px;
}

.page-gdpr__contact-cta p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f5e6d0;
}

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

.page-gdpr__contact-info p {
    margin-bottom: 10px;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__content-grid {
        flex-direction: column;
    }

    .page-gdpr__content-grid--reversed {
        flex-direction: column;
    }

    .page-gdpr__hero-title {
        font-size: 2.8em;
    }

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

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

    .page-gdpr__hero-title {
        font-size: 2.2em;
    }

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

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

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

    .page-gdpr__rights-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-gdpr__right-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }

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

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

    .page-gdpr__text-content p, .page-gdpr__subtitle, .page-gdpr__contact-info p {
        font-size: 0.95em;
    }

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