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

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

.page-gdpr__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #203a5e 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Auxiliary color for emphasis */
    font-weight: bold;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.page-gdpr__cta-button,
.page-gdpr__contact-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for buttons */
    color: #0A192F; /* Dark text for light button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-gdpr__content-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-gdpr__text-block {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #1a2a44; /* Slightly lighter dark blue for content blocks */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-gdpr__text-block h3 {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 20px;
    margin-bottom: 10px;
}

.page-gdpr__text-block p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

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

.page-gdpr__list li {
    background-color: #253a5e; /* Even lighter dark blue for list items */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.page-gdpr__list li h3 {
    color: #FFD700;
    margin-top: 0;
    font-size: 1.5em;
}

.page-gdpr__list li p {
    color: #e0e0e0;
    margin-bottom: 0;
}

.page-gdpr__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__text-block h3 {
        font-size: 1.5em;
    }
    .page-gdpr__text-block p {
        font-size: 0.95em;
    }
    .page-gdpr__cta-button,
    .page-gdpr__contact-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__text-block {
        padding: 20px;
    }
    .page-gdpr__list li {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 0.9em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__text-block h3 {
        font-size: 1.3em;
    }
    .page-gdpr__cta-button,
    .page-gdpr__contact-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}