* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

a {
    color: #4a7c4f;
}

img {
    max-width: 100%;
    height: auto;
}

header {
    background-color: #3b5d3b;
    color: #fff;
    padding: 15px 20px;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

nav ul li a {
    color: #ddd;
    text-decoration: none;
    padding: 8px 14px;
    font-size: 0.95rem;
    display: inline-block;
}

nav ul li a:hover {
    background-color: #5a8a5e;
    color: #fff;
}

nav ul li a.active {
    background-color: #5a8a5e;
    color: #fff;
    font-weight: bold;
}

.hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #5a8a5e;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #4a7c4f;
}

.section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: #3b5d3b;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-img {
    width: 100%;
}

.about-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3b5d3b;
}

.about-text p {
    margin-bottom: 12px;
    color: #555;
}

.about-text ul {
    margin: 12px 0 20px 25px;
    color: #555;
}

.about-text ul li {
    margin-bottom: 6px;
}

.features {
    background-color: #f4f1ec;
    padding: 50px 20px;
}

.features-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: #fff;
    padding: 25px 20px;
    border: 1px solid #ddd;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #3b5d3b;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    border: 1px solid #ddd;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-info {
    padding: 20px;
}

.service-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #3b5d3b;
}

.service-info p {
    color: #666;
    font-size: 0.95rem;
}

.gallery {
    padding: 50px 20px;
    background-color: #f4f1ec;
}

.gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item figcaption {
    background: #3b5d3b;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
}

.pricing {
    padding: 50px 20px;
    max-width: 900px;
    margin: 0 auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

thead {
    background-color: #3b5d3b;
    color: #fff;
}

th {
    padding: 12px 15px;
    text-align: left;
    font-size: 0.9rem;
}

td {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    color: #555;
}

tbody tr:hover {
    background-color: #f4f1ec;
}

.video-section {
    padding: 50px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 10px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-section {
    padding: 50px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #3b5d3b;
}

.contact-info p {
    color: #555;
    margin-bottom: 10px;
}

.contact-info ul {
    list-style: none;
    margin-top: 20px;
}

.contact-info ul li {
    margin-bottom: 10px;
    color: #555;
}

.contact-info ul li strong {
    color: #3b5d3b;
}

.contact-form {
    background: #f4f1ec;
    padding: 30px;
    border: 1px solid #ddd;
}

.contact-form h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #3b5d3b;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #3b5d3b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    color: #333;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.form-check label {
    font-size: 0.9rem;
    color: #555;
}

.form-submit {
    padding: 10px 30px;
    background-color: #3b5d3b;
    color: #fff;
    border: none;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}

.form-submit:hover {
    background-color: #4a7c4f;
}

.map-section {
    padding: 0 20px 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    padding-bottom: 40%;
    height: 0;
    overflow: hidden;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hours-table {
    margin-top: 20px;
}

.hours-table table {
    max-width: 300px;
}

.hours-table th,
.hours-table td {
    padding: 8px 12px;
}

.two-col-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.two-col-text h3 {
    color: #3b5d3b;
    margin-bottom: 10px;
}

.two-col-text p {
    color: #555;
    margin-bottom: 10px;
}

.ordered-list {
    margin: 10px 0 20px 25px;
    color: #555;
}

.ordered-list li {
    margin-bottom: 6px;
}

.two-col-text ul {
    margin: 10px 0 20px 25px;
    color: #555;
}

.two-col-text ul li {
    margin-bottom: 6px;
}

.contact-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.services-hero {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

footer {
    background-color: #2a2a2a;
    color: #bbb;
    padding: 35px 20px 15px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h3 {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-col p,
.footer-col li {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #999;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1100px;
    margin: 20px auto 0;
    padding-top: 15px;
    border-top: 1px solid #444;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 0;
    }

    .about-grid,
    .contact-grid,
    .two-col-text,
    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }
}