/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0F163D; /* Darker background for sections */
    line-height: 1.6;
}

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

.page-gdpr__hero-section {
    background: linear-gradient(135deg, #1A237E 0%, #0F163D 100%); /* Primary dark blue to darker blue */
    padding: 80px 0 40px;
    text-align: center;
    color: #FFD700; /* Gold for title on dark background */
    position: relative;
    overflow: hidden;
}

.page-gdpr__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #E0E0E0; /* Light gray for subtitle */
}

.page-gdpr__hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
}

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

.page-gdpr__text-block {
    margin-bottom: 40px;
    background-color: #1A237E; /* Primary dark blue for text blocks */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: #E0E0E0; /* Light gray for text */
}

.page-gdpr__heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section headings */
    margin-bottom: 25px;
    font-weight: bold;
    border-bottom: 2px solid #FFD700; /* Gold underline */
    padding-bottom: 10px;
}

.page-gdpr__text-block p {
    margin-bottom: 15px;
}

.page-gdpr__text-block ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.page-gdpr__text-block ul li {
    margin-bottom: 10px;
}

.page-gdpr__image-block {
    text-align: center;
    margin: 50px 0;
}

.page-gdpr__illustration-image {
    max-width: 90%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
}

.page-gdpr__cta-block {
    background-color: #2C387E; /* Slightly lighter dark blue for CTA */
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    color: #E0E0E0;
}

.page-gdpr__cta-heading {
    font-size: 1.8em;
    color: #FFD700; /* Gold for CTA heading */
    margin-bottom: 15px;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700; /* Gold for buttons */
    color: #1A237E; /* Dark blue for button text */
    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__button:hover {
    background-color: #E5C100; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

.page-gdpr__bottom-cta {
    background-color: #1A237E; /* Primary dark blue for bottom CTA */
    padding: 50px 0;
    text-align: center;
    color: #E0E0E0;
}

.page-gdpr__cta-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for bottom CTA title */
    margin-bottom: 20px;
}

.page-gdpr__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-gdpr__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700; /* Gold border */
}

.page-gdpr__button--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A237E; /* Dark blue text on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }
    .page-gdpr__heading {
        font-size: 1.8em;
    }
    .page-gdpr__subtitle,
    .page-gdpr__cta-description {
        font-size: 1em;
    }
    .page-gdpr__hero-section,
    .page-gdpr__content-section,
    .page-gdpr__bottom-cta {
        padding: 40px 0;
    }
    .page-gdpr__text-block,
    .page-gdpr__cta-block {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 2em;
    }
    .page-gdpr__heading {
        font-size: 1.5em;
    }
    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__text-block ul {
        margin-left: 15px;
    }
}