/* style/gdpr.css */
.page-gdpr {
    --primary-color: #004AAD; /* Deep Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-dark: #333;
    --text-light: #fff;
    --background-light: #f8f8f8;
    --background-dark: var(--primary-color);

    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

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

.page-gdpr-hero {
    background: linear-gradient(135deg, var(--primary-color), #003380); /* Slightly darker blue */
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 5px solid var(--secondary-color);
}

.page-gdpr-hero h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.page-gdpr-hero p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.page-gdpr-section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr-section--dark {
    background-color: #e9eff6; /* A very light blue tint for subtle contrast */
}

.page-gdpr-section h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr-section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.page-gdpr-intro-text {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-gdpr-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.page-gdpr-article {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    flex: 1 1 calc(33% - 30px); /* Three columns on larger screens */
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.page-gdpr-article h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.page-gdpr-article ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.page-gdpr-article ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95em;
}

.page-gdpr-article ul li::before {
    content: '✔';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.page-gdpr-contact-info {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.page-gdpr-contact-info h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-gdpr-contact-info h2::after {
    background-color: var(--text-light);
}

.page-gdpr-contact-info p {
    font-size: 1.1em;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-gdpr-btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-gdpr-image-wrapper {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}

.page-gdpr-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr-article {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .page-gdpr-hero h1 {
        font-size: 2em;
    }
    .page-gdpr-section h2 {
        font-size: 1.8em;
    }
    .page-gdpr-article {
        flex: 1 1 100%;
    }
    .page-gdpr-hero {
        padding: 40px 15px;
    }
    .page-gdpr-section {
        padding: 30px 0;
    }
    .page-gdpr-contact-info {
        padding: 20px;
    }
    .page-gdpr-btn {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .page-gdpr-hero h1 {
        font-size: 1.8em;
    }
    .page-gdpr-hero p {
        font-size: 1em;
    }
    .page-gdpr-section h2 {
        font-size: 1.5em;
    }
    .page-gdpr-article h3 {
        font-size: 1.3em;
    }
    .page-gdpr-article ul li {
        font-size: 0.9em;
    }
}