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

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
}

.page-gdpr__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

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

.page-gdpr__section--light {
    background-color: #eef7ff; /* Lighter variant of primary color */
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-gdpr__sub-title {
    font-size: 1.6em;
    color: #0056b3;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__text {
    font-size: 1em;
    margin-bottom: 15px;
    color: #444;
    text-align: justify;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-gdpr__list li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #444;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-align: center;
}

.page-gdpr__button--primary {
    background-color: #ffc107;
    color: #0056b3;
    border: 2px solid #ffc107;
}

.page-gdpr__button--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #003f8e;
    transform: translateY(-2px);
}

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

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

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

.page-gdpr__right-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__right-item .page-gdpr__sub-title {
    font-size: 1.3em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-gdpr__right-item .page-gdpr__text {
    font-size: 0.95em;
    line-height: 1.7;
    color: #555;
}

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

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

.page-gdpr__contact-info {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
}

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

.page-gdpr__link:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-gdpr__sub-title {
        font-size: 1.4em;
    }

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

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

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

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

    .page-gdpr__hero-subtitle {
        font-size: 0.9em;
    }

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

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

    .page-gdpr__sub-title {
        font-size: 1.2em;
    }

    .page-gdpr__list {
        margin-left: 15px;
    }
}