body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #6a5acd;
    color: #fff;
    padding: 20px;
    text-align: center;
}

section {
    background-color: #fff;
    margin: 20px;
    padding: 20px;
    border-radius: 5px;
}

#introduction img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

#key-achievements ul {
    list-style-type: disc;
    padding-left: 20px;
}

#members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.members-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #6a5acd;
}

.members-profile {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
    
.member {
    text-align: center;
    width: 180px;
}

.member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
}
    object-fit: cover;
}