/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light gray for main text on dark background */
    background-color: #0A2342; /* Dark blue main background */
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A2342, #1A3A60); /* Slightly lighter dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    color: white;
}

.page-gdpr__title {
    font-size: 2.8em;
    color: #F5B041; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__intro {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

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

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(245, 176, 65, 0.2); /* Subtle gold border */
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section--alt {
    background-color: #123055; /* Slightly lighter dark blue for alternate sections */
}

.page-gdpr__section-title {
    font-size: 2em;
    color: #F5B041; /* Gold for section titles */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__section p {
    margin-bottom: 15px;
    text-align: justify;
}

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

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

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

.page-gdpr__link {
    color: #F5B041; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__link:hover {
    text-decoration: underline;
    color: #FFD700; /* Brighter gold on hover */
}

.page-gdpr__section--contact {
    text-align: center;
    padding-bottom: 80px;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #F5B041; /* Gold button background */
    color: #0A2342; /* 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;
    margin-top: 30px;
}

.page-gdpr__button:hover {
    background-color: #FFD700; /* Brighter gold on hover */
    color: #000; /* Black text on hover for better contrast */
}

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

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

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

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

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 1.8em;
    }

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

    .page-gdpr__hero {
        padding: 60px 0 30px;
    }

    .page-gdpr__section {
        padding: 40px 0;
    }
}