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

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

.page-gdpr-hero {
    background-color: #003366;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9), rgba(255, 204, 0, 0.3));
    z-index: 1;
}

.page-gdpr-hero .page-gdpr-container {
    position: relative;
    z-index: 2;
}

.page-gdpr-hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFCC00;
    font-weight: bold;
}

.page-gdpr-hero-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

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

.page-gdpr-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.page-gdpr-section:nth-of-type(even) {
    background-color: #f5f5f5;
}

.page-gdpr-section-title {
    font-size: 2em;
    color: #003366;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

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

.page-gdpr-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-gdpr-section ul {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

.page-gdpr-section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-gdpr-section ul li strong {
    color: #003366;
}

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

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

.page-gdpr-right-card {
    background-color: #003366;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-gdpr-right-card h3 {
    color: #FFCC00;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-gdpr-right-card p {
    font-size: 1em;
    color: #f0f0f0;
}

.page-gdpr-contact {
    text-align: center;
    padding-bottom: 80px;
}

.page-gdpr-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFCC00;
}

.page-gdpr-button:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    border-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr-hero-title {
        font-size: 2.2em;
    }
    .page-gdpr-hero-description {
        font-size: 1em;
    }
    .page-gdpr-section-title {
        font-size: 1.8em;
    }
    .page-gdpr-section p, .page-gdpr-section ul li {
        font-size: 1em;
    }
    .page-gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-gdpr-hero {
        padding: 60px 0;
    }
    .page-gdpr-hero-title {
        font-size: 1.8em;
    }
    .page-gdpr-section {
        padding: 40px 0;
    }
    .page-gdpr-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}