/* style/gdpr.css */

.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-gdpr__hero {
    background: linear-gradient(135deg, #003366, #FFD700);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

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

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #eee;
}

.page-gdpr__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    filter: grayscale(50%);
}

.page-gdpr__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-gdpr__section {
    padding: 60px 20px;
    text-align: center;
}

.page-gdpr__section:nth-of-type(even) {
    background-color: #eef;
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #003366;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__section-intro {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-gdpr__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-gdpr__item-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__item-description {
    color: #666;
    font-size: 1em;
}

.page-gdpr__rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    text-align: left;
    margin-bottom: 40px;
}

.page-gdpr__rights-item {
    background-color: #fff;
    padding: 25px;
    border-left: 5px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-gdpr__rights-item .page-gdpr__item-title {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
}

.page-gdpr__rights-item .page-gdpr__item-description {
    font-size: 0.95em;
    color: #666;
}

.page-gdpr__rights-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact-info {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
}

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

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

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

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

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

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

.page-gdpr__btn--secondary {
    background-color: #003366;
    color: #FFD700;
    border: 2px solid #003366;
}

.page-gdpr__btn--secondary:hover {
    background-color: #001a33;
    color: #ffe033;
    transform: translateY(-2px);
}

.page-gdpr__trust-image {
    max-width: 300px;
    height: auto;
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 15px;
    }
    .page-gdpr__hero-title {
        font-size: 1.6em;
    }
    .page-gdpr__section {
        padding: 40px 15px;
    }
    .page-gdpr__item-title {
        font-size: 1.3em;
    }
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}