/* General Reset & Font */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Header & Navigation */
header {
    background-color: #f0f0f0;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
    text-align: center;
    color: #00754a;
    margin: 0;
    font-size: 28px;
}

nav {
    text-align: center;
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    color: #333;
}

nav a.active, nav a:hover {
    color: #00754a;
}

/* Hero Section (Homepage) */
.hero {
    background: #eafaf1;
    padding: 60px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 36px;
    color: #00754a;
}

.hero p {
    font-size: 18px;
    margin: 15px 0;
}

.hero .btn {
    background-color: #00754a;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

/* Main Content Layout */
main {
    padding: 40px 20px;
}

/* About Section */
.about-section {
    max-width: 800px;
    margin: auto;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.about-section h2 {
    color: #00754a;
    text-align: center;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.services-section h2 {
    text-align: center;
    color: #00754a;
}

.service {
    margin-bottom: 30px;
}

.service h3 {
    color: #333;
    margin-bottom: 8px;
}

.service p {
    line-height: 1.6;
    color: #555;
}

/* Appointment Section */
.appointment-section {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.appointment-section h2 {
    text-align: center;
    color: #00754a;
}

.form-placeholder {
    margin-top: 40px;
    padding: 50px;
    background: #f5f5f5;
    border: 2px dashed #ccc;
    border-radius: 10px;
    text-align: center;
}

/* Contact Section */
.contact-section {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.contact-section h2 {
    text-align: center;
    color: #00754a;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: #eee;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
    font-size: 14px;
    color: #555;
}

.form-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
}

