/* ABOUT PAGE */
.about-section {
    width: 90%;
    margin: 60px auto;
    padding: 40px 0;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #131F49;
}

.about-subtitle {
    text-align: center;
    font-size: 18px;
    color: #444;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.about-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.about-image-box img {
    width: 100%;
    max-width: 200px;
    border-radius: 12px;
}

.about-text-box {
    flex: 1;
    
}

.about-text-box h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #131F49;
}

.about-text-box p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    word-spacing: -0.1rem;
}

/* Mission Section */
.mission-section {
    background: #F6F6F6;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.mission-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #131F49;
}

.mission-section p {
    color: #444;
    line-height: 1.6;
}

/* Team Section */
.team-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #131F49;
    text-align: center;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    text-align: center;
    width: 220px;
}

.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 20px;
    color: #131F49;
}

.team-card p {
    color: #777;
    font-size: 14px;
}
