/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Section 1 Styles */

.h2 {
    text-align: center;
}
.members-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    background-color: #f4f4f4;
}

.member {
    width: 300px;
    height: 300px; /* Ensures square size */
    margin: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.member img {
    width: 100%;
    height: 100%; /* Makes image fill the square container */
    object-fit: cover; /* Ensures the image covers the square without distortion */
    border-radius: 8px;
}

.member-name {
    margin-top: 10px;
    font-weight: bold;
}

/* Enhanced Info Section Styles */
.info-section {
    padding: 40px;
    background-color: #f4f4f4;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 50px auto;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.info-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #0056b3;
}

.info-section p {
    font-size: 1.25em;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
}


