.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    color: #333;
}

.about-section h2 {
    font-size: 32px;
    text-align: center;
    color: #0050b3;
    margin-bottom: 30px;
}

.about-section p {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
}

.highlight-box {
    background-color: #fff;
    border: 1px solid #dbe5f1;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.highlight-box h3 {
    color: #0050b3;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Team Section */
.team {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.2rem;
    color: #004aad;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 0.9rem;
    color: #555;
}

