/* style/gdpr.css */

/* Variables */
:root {
    --page-gdpr-primary-color: #0A2540;
    --page-gdpr-secondary-color: #FFD700;
    --page-gdpr-text-light: #F8F8F8;
    --page-gdpr-text-dark: #1A1A1A;
    --page-gdpr-background-light: #FFFFFF;
    --page-gdpr-background-dark: #0A2540;
    --page-gdpr-accent-color-darker: #b39700;
    --page-gdpr-border-color: rgba(255, 255, 255, 0.1);
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-gdpr-text-dark);
    background-color: var(--page-gdpr-background-light);
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, var(--page-gdpr-primary-color) 0%, #1A3E66 100%);
    color: var(--page-gdpr-text-light);
    padding: 100px 0;
    text-align: center;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--page-gdpr-text-light);
    font-weight: bold;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.page-gdpr__section {
    padding: 80px 0;
    background-color: var(--page-gdpr-background-light);
}

.page-gdpr__section--dark {
    background-color: var(--page-gdpr-background-dark);
    color: var(--page-gdpr-text-light);
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: var(--page-gdpr-primary-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-gdpr__section--dark .page-gdpr__section-title {
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-gdpr-secondary-color);
    border-radius: 2px;
}

.page-gdpr__section--dark .page-gdpr__section-title::after {
    background-color: var(--page-gdpr-text-light);
}

.page-gdpr__intro-text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -30px auto 60px;
    color: inherit;
}

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

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

.page-gdpr__text-content {
    flex: 1;
}

.page-gdpr__text-content h3 {
    font-size: 1.5em;
    color: var(--page-gdpr-primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-gdpr__section--dark .page-gdpr__text-content h3 {
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr__text-content p {
    margin-bottom: 15px;
    color: inherit;
}

.page-gdpr__text-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: inherit;
}

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

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

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

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

.page-gdpr__card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--page-gdpr-border-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__section--dark .page-gdpr__card {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--page-gdpr-text-light);
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-gdpr__card-title {
    font-size: 1.4em;
    color: var(--page-gdpr-secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__card p {
    font-size: 0.95em;
    line-height: 1.7;
    color: inherit;
}

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

.page-gdpr__info-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 5px solid var(--page-gdpr-secondary-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--page-gdpr-text-light);
}

.page-gdpr__info-box h3 {
    font-size: 1.3em;
    color: var(--page-gdpr-secondary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-gdpr__info-box p {
    font-size: 0.9em;
    line-height: 1.6;
    color: inherit;
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    font-size: 1.1em;
    color: inherit;
}

.page-gdpr__contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.page-gdpr__contact-list li strong {
    min-width: 100px;
    color: var(--page-gdpr-primary-color);
}

.page-gdpr__section--dark .page-gdpr__contact-list li strong {
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr__link {
    color: var(--page-gdpr-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__section--dark .page-gdpr__link {
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr__link:hover {
    text-decoration: underline;
    color: var(--page-gdpr-accent-color-darker);
}

.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, transform 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

.page-gdpr__btn--primary {
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-primary-color);
    border: 2px solid var(--page-gdpr-secondary-color);
}

.page-gdpr__btn--primary:hover {
    background-color: var(--page-gdpr-accent-color-darker);
    border-color: var(--page-gdpr-accent-color-darker);
    transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: var(--page-gdpr-secondary-color);
    border: 2px solid var(--page-gdpr-secondary-color);
    margin-left: 20px;
}

.page-gdpr__btn--secondary:hover {
    background-color: var(--page-gdpr-secondary-color);
    color: var(--page-gdpr-primary-color);
    transform: translateY(-2px);
}

.page-gdpr__cta-section {
    background: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__cta-title {
    font-size: 2.5em;
    color: var(--page-gdpr-secondary-color);
    margin-bottom: 20px;
}

.page-gdpr__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-gdpr .highlight {
    color: var(--page-gdpr-secondary-color);
}

.page-gdpr__section--dark .highlight {
    color: var(--page-gdpr-secondary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__content-grid {
        flex-direction: column;
    }
    .page-gdpr__content-grid--reverse {
        flex-direction: column;
    }
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__cta-title {
        font-size: 2em;
    }
    .page-gdpr__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 80px 0;
    }
    .page-gdpr__section {
        padding: 60px 0;
    }
    .page-gdpr__grid-3, .page-gdpr__grid-2 {
        grid-template-columns: 1fr;
    }
    .page-gdpr__card, .page-gdpr__info-box {
        padding: 25px;
    }
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__cta-title {
        font-size: 1.8em;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-gdpr__btn--secondary {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__hero-title {
        font-size: 1.5em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.4em;
    }
    .page-gdpr__intro-text {
        font-size: 0.95em;
    }
    .page-gdpr__cta-title {
        font-size: 1.6em;
    }
}