/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text for better contrast on dark background */
    background-color: #1A2A3A; /* Dark blue background */
    line-height: 1.6;
}

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

.page-gdpr__hero-section {
    background: linear-gradient(135deg, #1A2A3A, #3A4A5A);
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    color: #C0C0C0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2A3A; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    background-color: #E0B500; /* Slightly darker gold on hover */
    color: #0F1A25;
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-gdpr__sub-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #C0C0C0;
}

.page-gdpr__list li {
    margin-bottom: 10px;
}

.page-gdpr__list strong {
    color: #FFD700;
}

.page-gdpr__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__contact-link:hover {
    text-decoration: underline;
}

.page-gdpr__call-to-action {
    background-color: #2A3A4A;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid #FFD700;
}

.page-gdpr__call-to-action .page-gdpr__sub-title {
    margin-top: 0;
    color: #FFD700;
}

.page-gdpr__call-to-action p {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 30px;
}

.page-gdpr__cta-button--bottom {
    padding: 18px 35px;
    font-size: 1.2em;
}

.highlight {
    color: #FFD700;
}

.keyword {
    font-weight: bold;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__sub-title {
        font-size: 1.5em;
    }
    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__call-to-action {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.6em;
    }
    .page-gdpr__hero-description {
        font-size: 0.9em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__sub-title {
        font-size: 1.3em;
    }
    .page-gdpr__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gdpr__call-to-action p {
        font-size: 1em;
    }
}