.about-container {
    width: 90%;
    margin: 60px auto;
    padding: 20px;
    background-color: white;
    border: 2px solid #4A90E2;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}
.about-header {
    text-align: center;
    margin-bottom: 20px;
}

.about-header h1 {
    color: #4A90E2;
    margin-bottom: 10px;
}

.about-header p {
    color: #666;
    font-size: 1.2em;
}
.about-content section{
    margin-bottom: 30px;
}
.about-content .mission p{
    text-align: center;
}
.about-content h2 {
    color: #4A90E2;
    margin-bottom: 20px;
    border-bottom: 2px solid #4A90E2;
    display: inline-block;
    padding-bottom: 5px;
}
.mission{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mission p, .team p, .values ul {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
}

.team {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}
.team h2{
    text-align: center;
    margin-bottom: 20px;
    color: #4A90E2;
}
.team-member {
    text-align: center;
    margin-bottom: 20px;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.team-member h3 {
    margin: 0;
    color: #4A90E2;
}

.team-member p {
    margin: 5px 0;
    color: #666;
}
.values{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.values ul {
    list-style-type: none;
    width: 100%;
}

.values ul li {
    background-color: #4A90E2;
    color: white;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
}
.team-member a{
    text-decoration: none;
}
.team-member a:hover{
    color: #7ED321;
}
@media screen and (min-width: 790px) {
    .team {
        gap: 20px;
    }
    .about-container {
        width: 70%;
    }
}