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

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

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

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__title {
    font-size: 3em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
}

.page-gdpr__subtitle {
    font-size: 1.2em;
    color: #e0e0e0;
}

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

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

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

.page-gdpr__sub-heading {
    font-size: 1.5em;
    color: #0056b3;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #495057;
    text-align: justify;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__grid-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-gdpr__grid-item .page-gdpr__sub-heading {
    color: #007bff;
    margin-top: 0;
}

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

.page-gdpr__list li {
    background-color: #fff;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 5px solid #ffc107;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    color: #495057;
}

.page-gdpr__list li .page-gdpr__sub-heading {
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-gdpr__section--cta-bg {
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.page-gdpr__heading--cta {
    color: #fff;
    font-size: 2.5em;
}

.page-gdpr__text--cta {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-gdpr__text--cta-small {
    font-size: 1em;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #cce5ff;
}

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

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

.page-gdpr__button--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #0056b3;
    transform: translateY(-3px);
}

.page-gdpr__button--secondary {
    background-color: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.page-gdpr__button--secondary:hover {
    background-color: #ffc107;
    color: #007bff;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }
    .page-gdpr__heading {
        font-size: 1.8em;
    }
    .page-gdpr__sub-heading {
        font-size: 1.3em;
    }
    .page-gdpr__text {
        font-size: 1em;
    }
    .page-gdpr__hero {
        padding: 60px 0 30px;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 2em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__heading {
        font-size: 1.5em;
    }
    .page-gdpr__list li {
        padding: 15px;
    }
}