.acerca {
    background-color: #e6f2ff;
    padding: 60px 20px;
}

.acerca-container {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px 40px;
    margin: 20px auto;
    background-color: white;
    width: 90%;
    text-align: center;
    max-width: 1200px;
    box-sizing: border-box;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.team-member {
    background-color: #eef3f7;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-sizing: border-box;
    width: calc(33.333% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 450px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 1rem;
    color: #333;
}

@media screen and (max-width: 768px) {
    .team-member {
        width: calc(50% - 40px);
    }
}

@media screen and (max-width: 480px) {
    .team-member {
        width: 100%;
    }
}
