body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f7f7;
}

/* Section styling */
.team-section {
    padding: 70px 50px;
    text-align: center;
}

.team-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.team-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 50px;
}

/* Team Container */
.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

/* Team Card */
.team-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

/* Doctor Photo */
.team-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Doctor Info */
.team-card h2 {
    font-size: 26px;
    margin-bottom: 8px;
}

.team-card h4 {
    font-size: 18px;
    color: #009688;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 480px) {
    .team-title {
        font-size: 36px;
    }
    .team-subtitle {
        font-size: 18px;
    }
}
