/* Members Section */
.members {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.members h1 {
    color: #800000;
    font-size: 42px;
    margin-bottom: 40px;
}

.members h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 30px;
}

.member-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.member-card {
    background-color: #f9f9f9;
    margin: 15px;
    padding: 25px;
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.member-card img {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.member-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.member-role {
    font-size: 18px;
    color: #800000;
    margin-bottom: 10px;
    font-weight: 600;
}

.member-email {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.member-email i {
    margin-right: 5px;
}

.member-about {
    font-size: 16px;
    color: #555;
    text-align: left;
}

@media (max-width: 768px) {
    .member-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
