body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #dcebf8;
    color: #333;
}

.about-section {
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #00796b;
}

.about-section p {
    max-width: 900px;
    margin: 0 auto 25px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.highlight {
    color: #004d40;
    font-weight: bold;
}

.section-title {
    margin-top: 60px;
    font-size: 28px;
    color: #00695c;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 14px;
    padding: 20px;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card h3 {
    color: #00796b;
    font-size: 22px;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #555;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    max-width: 250px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.team-member img {
    max-width:200px;
    max-height: 400px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
}

.team-member h4 {
    margin: 10px 0 5px;
    color: #00796b;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .card-container,
    .team-container {
    flex-direction: column;
    align-items: center;
    }
}