/* About Page Styles */
.about-page-container {
    padding: 60px 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-intro h3 {
    font-size: 2.5rem;
    color: #2272bc;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
}

.about-intro img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mission-vision-container {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.mv-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card h3 {
    font-size: 1.8rem;
    color: #2272bc;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mv-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.team-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-section h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.team-section>p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.team-member {
    padding: 20px;
    background: #f4f4f4;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.team-member:hover {
    background: #e9e9e9;
}

.team-member i {
    font-size: 2rem;
    color: #2272bc;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 768px) {
    .mission-vision-container {
        flex-direction: column;
    }
}