.abouts {
    background-color: #f8f9fa;
}

.abouts h2, .abouts h3 {
    color: #0a5f4a; /* Vert CEEMUCI */
    font-weight: bold;
}

.abouts p {
    color: #555;
}

.list-unstyled li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #333;
}
/* Styles pour les activités */
.activity-card {
    background-color: #0a5f4a;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.activity-card h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.activity-card p {
    font-size: 1rem;
    color: #e0e0e0;
}


/* Style de la carte pour les membres du BEN et de la Cellule Féminine */
.member-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    width: 220px;
    padding: 15px;
    text-align: center;
    background-color: #fff;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.member-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.member-name {
    font-size: 1.2rem;
    color: #0a5f4a;
    font-weight: bold;
}

.member-role, .member-study-level {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
}

/* Ajustement pour les images de la page */
.img-fluid {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* Style des membres de la Cellule Féminine */
.female-member-item {
    margin-bottom: 20px;
    color: #0a5f4a;
}

.female-member-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.female-member-role, .female-member-study-level {
    font-size: 1rem;
    color: #555;
}



