
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 92, 50, 0.9), rgba(0, 92, 50, 0.9)), 
                url('http://static.photos/medical/1200x630/5');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #80CD32;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #6BB82D;
}

/* Specializations */
.specializations {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specializations h2 {
    text-align: center;
    color: #005C32;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.specialty-card:hover {
    transform: translateY(-5px);
}

.specialty-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.specialty-card h3 {
    padding: 1rem;
    color: #005C32;
    margin: 0;
}

.specialty-card p {
    padding: 0 1rem 1.5rem;
    color: #555;
    margin: 0;
}

/* History Timeline */
.history {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.history h2 {
    text-align: center;
    color: #005C32;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: #80CD32;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 1rem 2rem;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #005C32;
    border-radius: 50%;
    top: 1.5rem;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-item h3 {
    color: #005C32;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    background: #005C32;
    color: white;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #80CD32;
}

.stat-item p {
    font-size: 1.1rem;
    margin: 0;
}
header {
    background: #005C32;
    color: #fff;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 2rem;
}
.header-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    height: 60px;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

nav ul li {
    margin: 0;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
}
main {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.service {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #005C32;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.service h2 {
    color: #005C32;
    margin-top: 0;
    border-bottom: 2px solid #80CD32;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
}
.service ul {
    margin-left: 1.5rem;
    columns: 2;
    column-gap: 2rem;
}

@media (max-width: 768px) {
    .service ul {
        columns: 1;
    }
}
.service li {
    margin-bottom: 0.5rem;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* About Page Styles */
.about-intro {
    background: #f0f7f0;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #005C32;
}

.mission-values {
    margin: 3rem 0;
}

.mission-statement {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-top: 3px solid #80CD32;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card h4 {
    color: #005C32;
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.benefit-card h4 {
    color: #005C32;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #555;
    margin: 0;
}
footer {
    background: #005C32;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    width: 100%;
}
.contact-hero {
    background: linear-gradient(rgba(0, 92, 50, 0.8), rgba(0, 92, 50, 0.8)), url('http://static.photos/medical/1200x630/10');
    padding: 5rem 2rem;
background-size: cover;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    margin-top: 2rem;
}
.contact-info h2, .contact-form h2 {
    color: #005C32;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #80CD32;
    padding-bottom: 0.5rem;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-details h3 {
    color: #005C32;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.operating-hours ul {
    list-style: none;
    padding: 0;
}

.operating-hours li {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    max-width: 300px;
}

.operating-hours span {
    font-weight: bold;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    background: #005C32;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:hover {
    background: #004529;
}

