/* 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 15px;
}

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

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.8;
}

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

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

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

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #007bff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.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__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

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

.page-gdpr__list li {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-gdpr__list-title {
    font-size: 1.5em;
    color: #007bff;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__list li p {
    font-size: 1em;
    color: #666;
    margin-bottom: 0;
    text-align: left;
}

.page-gdpr__list--bullet {
    list-style: disc inside;
    padding-left: 20px;
}

.page-gdpr__list--bullet li {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 5px 0;
    margin-bottom: 10px;
    color: #555;
}

.page-gdpr__list--bullet li:hover {
    transform: none;
    box-shadow: none;
}

.page-gdpr__list--bullet li::marker {
    color: #007bff;
}

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

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

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

.page-gdpr__contact p {
    text-align: center;
    font-size: 1.1em;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
}

.page-gdpr__btn--contact {
    background-color: #ffc107;
    color: #000000;
    border: 2px solid #ffc107;
    margin: 30px auto 0 auto;
    display: block;
    max-width: 200px;
}

.page-gdpr__btn--contact:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta {
    background-color: #0056b3; /* Darker shade of primary for contrast */
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-gdpr__cta .page-gdpr__section-title {
    color: #ffffff;
}

.page-gdpr__cta .page-gdpr__section-title::after {
    background-color: #ffc107;
}

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

.page-gdpr__btn--primary {
    background-color: #ffc107;
    color: #000000;
    border: 2px solid #ffc107;
    margin: 10px 15px;
}

.page-gdpr__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    margin: 10px 15px;
}

.page-gdpr__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffc107;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Clear floats */
.page-gdpr__section::after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__hero-description {
        font-size: 1.1em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__list-title {
        font-size: 1.3em;
    }
    .page-gdpr__image-right, .page-gdpr__image-left {
        float: none;
        margin: 30px auto;
        max-width: 80%;
        display: block;
    }
}

@media (max-width: 768px) {
    .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: 20px;
    }
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-gdpr__btn--primary, .page-gdpr__btn--secondary {
        display: block;
        margin: 15px auto;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .page-gdpr__hero {
        padding: 40px 0;
    }
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-description {
        font-size: 0.9em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__list-title {
        font-size: 1.2em;
    }
    .page-gdpr__list li p {
        font-size: 0.9em;
    }
    .page-gdpr__cta p {
        font-size: 1em;
    }
}