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

.page-gdpr__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFCC00; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

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

.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;
    font-size: 1em;
    cursor: pointer;
}

.page-gdpr__btn--primary {
    background-color: #FFCC00;
    color: #003366; /* Dark blue text on gold button */
    border: 2px solid #FFCC00;
}

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

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #003366; /* Dark blue text on transparent button */
    border: 2px solid #003366;
}

.page-gdpr__btn--secondary:hover {
    background-color: #003366;
    color: #fff;
    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__section-title {
    font-size: 2em;
    color: #003366; /* Dark blue for titles */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FFCC00; /* Gold accent under titles */
    margin: 10px auto 0 auto;
}

.page-gdpr__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-gdpr__content-grid--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .page-gdpr__content-grid, .page-gdpr__content-grid--reverse {
        grid-template-columns: 1fr;
    }
    .page-gdpr__content-grid--reverse .page-gdpr__image-wrapper {
        order: -1; /* Move image to top on mobile for reverse grid */
    }
}

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

.page-gdpr__text-content strong {
    color: #003366;
}

.page-gdpr__text-content ul {
    list-style: disc;
    padding-left: 20px;
    color: #555;
}

.page-gdpr__text-content ul li {
    margin-bottom: 10px;
}

.page-gdpr__image-wrapper {
    text-align: center;
}

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

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

.page-gdpr__commitment-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__commitment-item:hover {
    transform: translateY(-5px);
}

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

.page-gdpr__commitment-item h3 {
    color: #003366; /* Dark blue for commitment item titles */
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-gdpr__commitment-item p {
    color: #666;
    font-size: 0.95em;
}

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

.page-gdpr__section--contact p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #444;
}

/* Animation for sections */
.page-gdpr--hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-gdpr--visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 576px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-subtitle {
        font-size: 1em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gdpr__commitment-grid {
        grid-template-columns: 1fr;
    }
}