.about-header {
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    position: relative;
    color: white; 
}

.about-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}

.about-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 30px;
}

.about-section {
    margin-bottom: 60px;
}

.section-flex {
    display: flex;
    gap: 30px;
    align-items: center;
}

.about-img {
    width: 380px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.full-img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 30px;
    height: 10px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}


.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.about-section p {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.country-list,
.service-list {
    margin-left: 22px;
    line-height: 1.9;
}
/* Style général de la section */
.about-section {
    padding: 50px 20px;
    background-color: #f9f9f9; /* Fond léger pour démarquer la section */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1e3c72; /* Couleur principale pour le titre */
    letter-spacing: 2px;
}

/* Image pleine largeur avec un style moderne */
.full-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    object-fit: cover;
}

/* Grille responsive pour les cartes */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Style pour chaque carte de valeur */
.value-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

/* Effet hover amélioré */
.value-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.95), rgba(42, 82, 152, 0.95));
    color: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Titre de chaque valeur */
.value-card h4 {
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #1e3c72;
    transition: color 0.3s ease;
}

.value-card:hover h4 {
    color: #ffd700; /* Couleur dorée lors du hover pour un accent */
}

/* Paragraphe descriptif */
.value-card p {
    font-size: 1em;
    color: #555;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.value-card:hover p {
    color: #f0f0f0;
}
@media (max-width: 768px) {
    .section-flex {
        flex-direction: column;
    }

    .about-img {
        width: 100%;
    }
}
