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

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

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

.page-gdpr__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-gdpr__btn--primary:hover {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #8B0000;
}

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

.page-gdpr__btn--secondary:hover {
    background-color: #8B0000;
    color: #FFD700;
    border-color: #FFD700;
}

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

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

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

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

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

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

.page-gdpr__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

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

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

.page-gdpr__list {
    list-style: disc inside;
    margin-left: 20px;
    font-size: 1.1em;
}

.page-gdpr__list li {
    margin-bottom: 10px;
}

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

.page-gdpr__right-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

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

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

.page-gdpr__card-text {
    font-size: 1em;
    color: #555;
}

.page-gdpr__section--cta {
    background: #FFD700;
    color: #8B0000;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-gdpr__cta-content {
    position: relative;
    z-index: 1;
}

.page-gdpr__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #8B0000;
}

.page-gdpr__cta-text {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #660000;
}

.page-gdpr__cta-image {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    opacity: 0.2;
    z-index: 0;
    transform: rotate(15deg);
}

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

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

    .page-gdpr__title {
        font-size: 2.5em;
    }

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

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

    .page-gdpr__cta-image {
        width: 200px;
        bottom: -20px;
        right: -20px;
    }
}

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

    .page-gdpr__title {
        font-size: 2em;
    }

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

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

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

    .page-gdpr__list {
        margin-left: 0;
        padding-left: 20px;
    }

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

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

    .page-gdpr__cta-text {
        font-size: 1em;
    }
}