/* Basic reset and layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: #003366;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

.clinic-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    font-family: 'Arial Black', sans-serif;
    font-size: 1.2rem;
    color: white;
    background: #00509e;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s, transform 0.2s;
}

.nav-menu a:hover {
    background: #ffcc00;
    color: #003366;
    transform: scale(1.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

main {
    flex: 1;
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-section {
    margin-bottom: 2rem;
    position: relative;
    text-align: center;
}

.carousel {
    margin-bottom: 2rem;
}

.carousel img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.carousel-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
}

.carousel-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: white;
    background: #00509e;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.carousel-button:hover {
    background: #ffcc00;
    color: #003366;
}

.welcome-section {
    margin-bottom: 2rem;
}

.core-services {
    margin-bottom: 2rem;
}

.location-section {
    margin-bottom: 2rem;
}

.map-container {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    color: #003366;
    margin-bottom: 1rem;
}

ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: white;
    background: #003366;
    text-decoration: none;
    margin-top: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.button:hover {
    background: #00224e;
}

footer {
    text-align: center;
    padding: 2rem 0;
    background: #f1f1f1;
    margin-top: auto;
}

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

.footer-logo {
    width: 80px;
    display: block;
    margin: 0 auto 1rem;
}

p {
    font-size: 0.9rem;
    color: #666;
}
