/* Reset and Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #4CAF50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ddd;
}

/* Doctor Section */
#doctors {
    background-color: skyblue;
    padding: 40px 0;
}

#doctors h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.doctor-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.doctor-card {
    background-color: yellow;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin: 10px;
    padding: 20px;
    text-align: center;
}

.doctor-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.doctor-card h3 {
    font-size: 22px;
    margin: 15px 0;
}

.doctor-card p {
    font-size: 16px;
    color: #555;
}

/* Appointment Section */
#appointment {
    background-color: #fafafa;
    padding: 40px 0;
}

#appointment h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input, form select, form button {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #45a049;
}

/* Contact Section */
#contact {
    background-color: #fff;
    padding: 40px 0;
}

#contact h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

#contact ul {
    list-style: none;
    text-align: center;
}

#contact ul li {
    font-size: 18px;
    margin: 10px 0;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
}
