/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light gray for readability on dark background */
    background-color: #000000; /* Black background */
    line-height: 1.6;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #FFD700 0%, #000000 100%);
    padding: 100px 0;
    text-align: center;
    color: #000000;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

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

.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-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__introduction .page-gdpr__section-title,
.page-gdpr__data-collection .page-gdpr__section-title,
.page-gdpr__security .page-gdpr__section-title,
.page-gdpr__contact .page-gdpr__section-title {
    color: #FFD700;
}

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

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

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

.page-gdpr__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

.page-gdpr__list li {
    background-color: #1a1a1a;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-gdpr__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

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

.page-gdpr__btn--secondary:hover {
    background-color: #555555;
    transform: translateY(-2px);
}

.page-gdpr__contact p {
    text-align: center;
    margin-bottom: 10px;
}

.page-gdpr__contact strong {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__content-flex {
        flex-direction: column;
    }
    .page-gdpr__content-flex--reverse {
        flex-direction: column;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__list li {
        padding: 10px 15px;
    }
}