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

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #007bff, #4da3ff);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    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, transform 0.3s ease;
}

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

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

.page-gdpr__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

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

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__heading {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
}

.page-gdpr__section--intro .page-gdpr__heading,
.page-gdpr__section--data-collection .page-gdpr__heading,
.page-gdpr__section--your-rights .page-gdpr__heading {
    text-align: left;
}

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

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

.page-gdpr__image-wrapper {
    flex: 1;
    min-width: 300px;
}

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

.page-gdpr__image-center {
    text-align: center;
    margin-top: 40px;
}

.page-gdpr__image--large {
    max-width: 80%;
}

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

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

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #555;
}

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

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

.page-gdpr__card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.page-gdpr__card p {
    color: #666;
}

.page-gdpr__section--contact {
    text-align: center;
    background-color: #eaf6ff;
    padding: 80px 0;
}

.page-gdpr__section--contact p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }
    .page-gdpr__heading {
        font-size: 1.8em;
    }
    .page-gdpr__content-wrapper {
        flex-direction: column;
    }
    .page-gdpr__content-wrapper--reversed {
        flex-direction: column;
    }
    .page-gdpr__text-content,
    .page-gdpr__image-wrapper {
        flex: none;
        width: 100%;
    }
    .page-gdpr__section--intro .page-gdpr__heading,
    .page-gdpr__section--data-collection .page-gdpr__heading,
    .page-gdpr__section--your-rights .page-gdpr__heading {
        text-align: center;
    }
}

@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__heading {
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 40px 0;
    }
    .page-gdpr__title {
        font-size: 1.8em;
    }
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gdpr__image--large {
        max-width: 95%;
    }
}