.about-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #26355D;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-section {
    padding: 60px 20px;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: #26355D;
    margin-bottom: 40px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.team-member img {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

.team-member h3 {
    font-size: 1.5rem;
    color: #26355D;
    margin-top: 15px;
}

.team-member span {
    font-size: 1rem;
    color: #777;
}

.team-member p {
    font-size: 1rem;
    color: #555;
}
@media (max-width: 768px) {
    .team-container {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        max-width: 90%;
    }
}