.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray text on dark background */
    background-color: #0A203C; /* Main dark background */
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A203C 0%, #3a4d6b 100%); /* Dark gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

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

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

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

.page-gdpr__section--intro .page-gdpr__text-content p {
    color: #E0E0E0;
}

.page-gdpr__section--alt-bg {
    background-color: #1a3a5e; /* Slightly lighter dark background for contrast */
}

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

.page-gdpr__section--commitment .page-gdpr__section-title,
.page-gdpr__section--security .page-gdpr__section-title {
    color: #FFD700;
}

.page-gdpr__flex-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-gdpr__flex-content--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__text-content {
    flex: 1;
}

.page-gdpr__text-content h2 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.8em;
    text-align: left;
}

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

.page-gdpr__text-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

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

.page-gdpr__text-content strong {
    color: #FFD700;
}

.page-gdpr__image-wrapper {
    flex: 1;
    text-align: center;
}

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

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

.page-gdpr__feature-item {
    background-color: #1A304D; /* Darker blue for feature cards */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

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

.page-gdpr__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-gdpr__feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-gdpr__feature-item p {
    color: #C0C0C0;
}

.page-gdpr__security-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-gdpr__security-list li {
    background-color: #1A304D;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-gdpr__list-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    filter: brightness(1.2);
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.page-gdpr__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A203C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

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

.page-gdpr__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A203C;
    transform: translateY(-2px);
}

.page-gdpr__section--contact {
    text-align: center;
}

.page-gdpr__section--contact p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #C0C0C0;
}

/* 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__flex-content {
        flex-direction: column;
        text-align: center;
    }

    .page-gdpr__flex-content--reverse {
        flex-direction: column;
    }

    .page-gdpr__text-content h2 {
        text-align: center;
    }

    .page-gdpr__image-wrapper {
        margin-top: 30px;
    }

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

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

    .page-gdpr__hero-title {
        font-size: 1.6em;
    }

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

    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}