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

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a304a 100%); /* Dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
}

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

.page-gdpr__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f5e6d0; /* Lighter text for subtitle */
}

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

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

.page-gdpr__section--cta {
    background-color: #FFD700; /* Gold background for CTA section */
    color: #0A192F; /* Dark blue text on gold background */
    padding: 80px 0;
}

.page-gdpr__container--flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.page-gdpr__cta-content {
    flex: 2;
    min-width: 300px;
}

.page-gdpr__cta-buttons {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-gdpr__heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section headings */
    text-align: center;
    margin-bottom: 40px;
}

.page-gdpr__heading--white {
    color: #0A192F; /* Dark blue for headings on gold background */
}

.page-gdpr__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #F0F0F0; /* Light grey text */
    text-align: justify;
}

.page-gdpr__text--white {
    color: #0A192F; /* Dark blue text on gold background */
}

.page-gdpr__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr__card {
    background-color: #1a2a40; /* Slightly lighter dark blue for cards */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
}

.page-gdpr__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    /* No filter to change image color */
}

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
}

.page-gdpr__card-text {
    color: #F0F0F0;
    font-size: 1em;
}

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

.page-gdpr__list-item {
    background-color: #1a2a40; /* Darker background for list items */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: #F0F0F0;
}

.page-gdpr__list-item::before {
    content: '✓';
    color: #FFD700; /* Gold checkmark */
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1.2;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    /* No filter to change image color */
}

.page-gdpr__image--full-width {
    width: 100%;
}

.page-gdpr__button {
    display: inline-block;
    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, transform 0.2s ease;
    text-align: center;
    border: 2px solid transparent;
}

.page-gdpr__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text */
    border-color: #FFD700;
}

.page-gdpr__button--primary:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-gdpr__button {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text */
    border-color: #FFD700;
}

.page-gdpr__button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-gdpr__button--inverted {
    background-color: #0A192F; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border-color: #0A192F;
}

.page-gdpr__button--inverted:hover {
    background-color: #1a2a40; /* Slightly lighter dark blue on hover */
    transform: translateY(-2px);
}

.page-gdpr__button--inverted-outline {
    background-color: transparent;
    color: #0A192F; /* Dark blue text */
    border-color: #0A192F;
}

.page-gdpr__button--inverted-outline:hover {
    background-color: #0A192F;
    color: #FFD700;
    transform: translateY(-2px);
}

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

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

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

    .page-gdpr__card {
        padding: 20px;
    }

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

    .page-gdpr__container--flex {
        flex-direction: column;
        text-align: center;
    }

    .page-gdpr__cta-buttons {
        width: 100%;
    }

    .page-gdpr__button {
        width: 100%;
        box-sizing: border-box;
    }
}

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

    .page-gdpr__heading {
        font-size: 1.5em;
    }

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

    .page-gdpr__content-grid {
        grid-template-columns: 1fr;
    }
}