/* Basic Reset and Global Styles */
body {
    font-family: 'Merriweather', serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #004d40; /* Dark Teal */
}

a {
    color: #00796b; /* Teal */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #004d40;
}

/* Navigation Bar */
.nav-bar {
    background-color: rgba(255, 255, 255, 0.9);
    position: sticky;
    top: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-bar a {
    margin: 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #004d40;
}

/* Layout */
.section {
    padding: 4rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.section-content {
    text-align: center;
}

.bg-light {
    background-color: #e0f2f1; /* Light Teal */
}

/* Hero Section with Image */
.hero-image {
    background: url('Lead.jpeg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 10rem 1rem;
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-image h2 {
    font-size: 1.5rem;
    color: #e0f2f1;
    font-weight: 400;
}

.hero-image p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 1rem auto;
}

.location-info {
    font-style: italic;
    font-size: 1rem;
}

/* Images within Sections */
.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin: 0.5rem;
}

.btn.primary {
    background-color: #00796b; /* Teal */
    color: white;
    border: 2px solid #00796b;
}

.btn.primary:hover {
    background-color: #004d40;
    border-color: #004d40;
}

.btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-top: 2rem;
}

.service-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

/* Rates and Notes */
#rates ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 2rem auto;
}

#rates li {
    background: #e0f2f1;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-left: 5px solid #004d40;
}

.note {
    font-style: italic;
    color: #555;
    text-align: center;
}

/* FAQ */
.faq-item {
    text-align: left;
    margin-bottom: 2rem;
}

.faq-item h3 {
    border-bottom: 2px solid #004d40;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: #004d40;
    color: #e0f2f1;
    text-align: center;
    padding: 2rem 0;
}