/* Doctor cards styling */
.doctors {
    margin-top: 2rem;
}
.doctor-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.doctor-card {
    background: #fff8f0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.08);
    padding: 1.2rem 1.5rem;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 260px;
    margin-bottom: 1.2rem;
    border: 1px solid #ffe0b2;
}
.doctor-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.12);
    margin-bottom: 0.7rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.doctor-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #d84315;
}
.doctor-qual {
    font-size: 1rem;
    color: #6d4c41;
    margin-bottom: 0.3rem;
}
.doctor-spec {
    font-size: 0.98rem;
    color: #1565c0;
    margin-bottom: 0.3rem;
}
.doctor-exp {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.5rem;
}
.doctor-contact {
    font-size: 1rem;
    color: #388e3c;
    font-weight: 500;
}
@media (max-width: 700px) {
    .doctor-cards {
        flex-direction: column;
        gap: 1rem;
    }
    .doctor-card {
        max-width: 100%;
    }
}
/* Side-by-side services columns */
.services-flex {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.service-column {
    flex: 1 1 320px;
    min-width: 280px;
    background: #f5faff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(25, 118, 210, 0.07);
    padding: 1.2rem 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
    .services-flex {
        flex-direction: column;
        gap: 1.2rem;
    }
    .service-column {
        min-width: unset;
        width: 100%;
    }
}
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f9fa;
    color: #222;
    min-height: 100vh;
}
header {
    background: #1976d2;
    color: #fff;
    text-align: center;
    padding: 2.5rem 1rem 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo {
    width: 40%;
    max-width: 40vw;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.tagline {
    font-size: 1.15rem;
    margin-top: 0.5rem;
    font-weight: 500;
}
main {
    max-width: 800px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.09);
    padding: 2.5rem 1.5rem;
}
section {
    margin-bottom: 2.5rem;
}
h2 {
    color: #1976d2;
    margin-bottom: 0.7rem;
    font-size: 1.5rem;
}
footer {
    text-align: center;
    padding: 1.2rem;
    background: #eee;
    color: #555;
    font-size: 1rem;
    border-top: 1px solid #e0e0e0;
}
@media (max-width: 700px) {
    main {
        margin: 0.5rem;
        padding: 0.7rem;
    }
    .logo {
        width: 80vw;
        max-width: 90vw;
    }
    header h1 {
        font-size: 1.1rem;
    }
    .tagline {
        font-size: 0.9rem;
    }
    h2 {
        font-size: 1rem;
    }
    main {
        padding: 0.3rem;
    }
    .logo {
        width: 90vw;
        max-width: 95vw;
    }
}
