/* General Container Styles */
.about-us-container {
    max-width: 1200px; /* Maximum width of the container */
    margin: 0 auto; /* Center align the container */
    padding: 20px; /* Add some padding */
    text-align: center; /* Center align text inside the container */
}

/* Team Member Row */
.team-row {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    justify-content: center; /* Center align the team members */
    gap: 20px; /* Space between team members */
}

/* Team Member Card */
.team-member {
    flex: 1 1 300px;
    max-width: 300px;
    text-align: center; /* Center align text inside the box */
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.team-member img {
    width: 100%; /* Ensure the image takes up the full width of the box */
    height: 300px; /* Set a fixed height for images */
    border-radius: 95%; /* Make the image circular */
    object-fit: cover; /* Ensure the image covers the container */
}

.team-member h3 {
    margin-top: 10px;
    color: #000000770;
    font-size: 1.25em;
}

.team-member p {
    font-size: 0.9em;
    color: #555;
    text-align: center; 
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-detail {
    padding: 50px 0;
    background-color: #f2f2f2;
}

.member-detail-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 20p;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 100%;
    max-width: 300px;
    height: auto; 
    border-radius: 95%;
    margin-right: 60px; 
}

.member-info {
    flex: 1;
    max-width: 700px;
}

.member-info h1, .member-info h2 {
    color: #333;
    margin: 10px 0;
}

.member-info p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

.member-contact {
    display: flex;
    flex-direction: column;
}


.member-contact p {
    display: flex;
    align-items: center;
    margin: 5px 0;
    color: #555;
}

.member-contact i {
    font-size: 16px;
    margin-right: 10px;
    color: #357960;
    vertical-align: middle; 
}

.member-contact a {
    color: #007bff; 
    text-decoration: none; 
    transition: color 0.3s; 
}

.member-contact a:hover {
    color: #0056b3; 
}

