/* Clean Medical Website Style */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #007bff; /* Medical blue */
    color: white;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 300;
}

header p {
    font-size: 1.2em;
    margin: 10px 0 0 0;
}

main {
    padding: 40px 0;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #0056b3;
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
}

.doctor-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.doctor {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 300px;
}

.doctor h3 {
    color: #28a745; /* Medical green */
    margin-bottom: 10px;
}

#contact {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

#contact a {
    color: #007bff;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

#about p {
    text-align: center;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    header {
        padding: 20px 0;
    }
    header h1 {
        font-size: 1.8em;
    }
    header p {
        font-size: 1.1em;
    }
    .doctor-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .doctor {
        width: 100%;
        text-align: left;
    }
    #about p {
        text-align: left;
    }
    #contact {
        text-align: left;
    }
    h2 {
        font-size: 1.5em;
        text-align: left;
    }
    main {
        padding: 20px 0;
    }
}