#about-us {
    padding: 100px 0;
    background-color: #f9f9f9;
}

#about-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#about-us h1, #about-us h2 {
    text-align: center;
    margin-bottom: 20px;
}

#about-us p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}

#about-us .team {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#about-us .team-member {
    text-align: center;
    margin-bottom: 40px;
    flex: 1 1 30%;
    max-width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    transition: transform 0.3s;
}

#about-us .team-member:hover {
    transform: translateY(-10px);
}

#about-us .team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 20px;
}

#about-us .team-member h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

#about-us .team-member p {
    font-size: 16px;
    color: #777;
}

#about-us .certificates {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
}

#about-us .certificate {
    text-align: center;
    margin-bottom: 40px;
    flex: 1 1 30%;
    max-width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    transition: transform 0.3s;
}

#about-us .certificate:hover {
    transform: translateY(-10px);
}

#about-us .certificate img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

#about-us .certificate p {
    font-size: 16px;
    color: #777;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #about-us .team-member,
    #about-us .certificate {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 480px) {
    #about-us .team-member,
    #about-us .certificate {
        flex: 1 1 100%;
        max-width: 100%;
    }
}