/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFFFFF; /* Default text color for dark backgrounds */
    background-color: #0A1931; /* Main background color */
}

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

.page-gdpr-hero {
    background-color: #0A1931;
    background-image: url('[GALLERY:bg:gdpr_hero_bg,abstract_lines,dark_blue,gold]');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

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

.page-gdpr-hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #E0E0E0;
}

.page-gdpr-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-gdpr-btn-primary {
    background-color: #FFD700;
    color: #0A1931;
}

.page-gdpr-btn-primary:hover {
    background-color: #e6c200;
    color: #000000;
}

.page-gdpr-btn-secondary {
    background-color: #E03B8B;
    color: #FFFFFF;
}

.page-gdpr-btn-secondary:hover {
    background-color: #c93079;
    color: #F0F0F0;
}

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

.page-gdpr-section:nth-of-type(even) {
    background-color: #1A2E4B; /* Slightly lighter dark blue for contrast */
}

.page-gdpr-section-title {
    font-size: 2.2em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-gdpr-text-content {
    flex: 1;
    min-width: 300px;
    color: #E0E0E0;
}

.page-gdpr-text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-gdpr-image-content {
    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.3);
}

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

.page-gdpr-grid-item {
    background-color: #0A1931;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #FFD70030;
}

.page-gdpr-grid-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-gdpr-grid-item p {
    color: #E0E0E0;
}

.page-gdpr-icon {
    width: 60px;
    height: 60px;
    filter: brightness(1.2);
}

.page-gdpr-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    color: #E0E0E0;
}

.page-gdpr-list li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
}

.page-gdpr-list-icon {
    color: #FFD700;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-gdpr-image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr-hero-title {
        font-size: 2em;
    }
    .page-gdpr-hero-subtitle {
        font-size: 1em;
    }
    .page-gdpr-section-title {
        font-size: 1.8em;
    }
    .page-gdpr-content-wrapper {
        flex-direction: column;
    }
    .page-gdpr-grid {
        grid-template-columns: 1fr;
    }
}

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