.aboutus-head {
    background-color: var(--medium-blue);
    color: white;
    text-align: center;
    padding: 50px 20px;
}

.aboutus-head h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.aboutus-head p {
    font-size: 1.2em;
}

.about-section {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 50px;
    background-color: #ffffff;
}

.about-card {
    max-width: 500px;
    background-color: var(--light-blue);
    border-radius: 10px;
    padding: 20px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    min-height: 500px;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.about-card h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
}

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

.team-section {
    padding: 50px;
    background-color: #fafafa;
    text-align: center;
}

.team-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.team-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.team-member {
    flex-basis: 30%;
    background-color: var(--light-blue);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 250px;
}

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

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 1em;
    color: #777;
}

.footer {
    background-color: #2b2b2b;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

.footer p {
    font-size: 0.9em;
}

@media screen and (max-width: 425px) {
    .team-container{
        display: block;
    }
}