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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #263126;
    background: #f4f4f4;
}

header {
    background:
        linear-gradient(rgba(37, 91, 43, 0.82), rgba(37, 91, 43, 0.82)),
        url('images/front-lawn.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

h1 {
    font-size: 2.3em;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

header p {
    font-size: 1.05em;
}

.tagline {
    font-size: 1.15em;
    font-style: italic;
    margin-top: 10px;
    color: #f8f9fa;
}

nav {
    background: #333;
    padding: 12px 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #8fcf8f;
}

main {
    max-width: 1050px;
    margin: auto;
}

section {
    padding: 40px 20px;
    margin: 22px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2, section h3 {
    margin-bottom: 14px;
    color: #255b2b;
}

section p {
    margin-bottom: 14px;
}

.hero-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
}

.hero-card img,
.gallery img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.button {
    display: inline-block;
    background: #255b2b;
    color: white;
    padding: 11px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.button:hover {
    background: #1d4722;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    background: transparent;
    box-shadow: none;
    padding: 0 20px;
}

.cards article {
    background: #e9ecef;
    padding: 22px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #255b2b;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin: 20px 0 30px;
}

.service-list li {
    background: #e9ecef;
    padding: 20px;
    border-radius: 8px;
}

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

.contact {
    background: #255b2b;
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
}

.contact a {
    color: white;
    font-weight: bold;
}

.contact form {
    max-width: 650px;
    margin: 24px auto 10px;
    text-align: left;
}

.contact label {
    display: block;
    margin: 12px 0;
    font-weight: bold;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 11px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    font: inherit;
}

.contact button {
    background: white;
    color: #255b2b;
    padding: 11px 22px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.contact button:hover {
    background: #f0f0f0;
}

.highlight {
    font-size: 1.15em;
    color: #255b2b;
}

.small-note {
    font-size: 0.9em;
    opacity: 0.9;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    h1 { font-size: 1.9em; }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .hero-card,
    .cards,
    .gallery {
        grid-template-columns: 1fr;
    }

    section {
        padding: 30px 15px;
        margin: 15px auto;
    }
}
