/* style/gdpr.css */

.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A192F; /* Main dark blue background */
    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%, #1a3a60 100%); /* Dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1); /* Subtle gold accent */
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.page-gdpr__hero-section::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.08); /* Subtle gold accent */
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.page-gdpr__title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-gdpr__subtitle {
    font-size: 1.2em;
    color: #B0B0B0; /* Lighter gray for subtitle */
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.page-gdpr__highlight {
    color: #FFD700;
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
}

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

.page-gdpr__article {
    background-color: #1a2a47; /* Slightly lighter dark blue for article background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section-title {
    font-size: 2em;
    color: #FFD700; /* Gold for section titles */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-gdpr__article p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-gdpr__text-highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-gdpr__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

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

.page-gdpr__article-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__contact-link:hover {
    text-decoration: underline;
    color: #fce883; /* Lighter gold on hover */
}

.page-gdpr__cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #0A192F;
    border-radius: 8px;
    box-shadow: inset 0 0 15px rgba(255, 215, 0, 0.1);
}

.page-gdpr__cta-text {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 25px;
}

.page-gdpr__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on gold */
    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__btn:hover {
    background-color: #fce883; /* Lighter gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2em;
    }

    .page-gdpr__subtitle {
        font-size: 1em;
    }

    .page-gdpr__section-title {
        font-size: 1.5em;
    }

    .page-gdpr__article {
        padding: 20px;
    }

    .page-gdpr__cta-text {
        font-size: 1.2em;
    }

    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        padding: 60px 0 30px;
    }

    .page-gdpr__title {
        font-size: 1.8em;
    }

    .page-gdpr__subtitle {
        font-size: 0.9em;
    }

    .page-gdpr__section-title {
        font-size: 1.3em;
    }

    .page-gdpr__article {
        padding: 15px;
    }

    .page-gdpr__list {
        padding-left: 15px;
    }
}