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

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

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

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

.page-gdpr-hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.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: 1.1em;
}

.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: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-gdpr-btn-secondary:hover {
    background-color: #FFD700;
    color: #003366;
    transform: translateY(-2px);
}

.page-gdpr-section {
    padding: 60px 0;
}

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

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

.page-gdpr-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-gdpr-content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-gdpr-text-block {
    flex: 1;
    min-width: 300px;
}

.page-gdpr-image-block {
    flex: 1;
    min-width: 300px;
    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-image-center {
    display: block;
    margin: 40px auto;
}

.page-gdpr-grid-3, .page-gdpr-grid-2 {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-gdpr-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

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

.page-gdpr-card-bordered {
    border: 1px solid #FFD700;
}

.page-gdpr-card-title {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 15px;
}

.page-gdpr-list {
    list-style: none;
    padding-left: 0;
}

.page-gdpr-list li {
    background-color: #fff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #003366;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

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

.page-gdpr-contact p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-gdpr-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-gdpr-link:hover {
    color: #FFD700;
}

/* Responsive adjustments */
@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.6em;
    }

    .page-gdpr-content-grid {
        flex-direction: column;
    }

    .page-gdpr-grid-3, .page-gdpr-grid-2 {
        grid-template-columns: 1fr;
    }
}