@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
header, footer {
    background-color: #3c763d;
    color: white;
    padding: 1em;
    text-align: center;
}
nav a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
}
nav a i {
    margin-right: 8px;
}
nav a:hover {
    text-decoration: none;
}
.hero {
    background-image: url('/img/background-yard.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0;
    position: relative;
}
.hero h1, .hero .cta-statement, .hero .service-area {
    text-shadow: 2px 2px 4px #000000;
}
.hero h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
}
.hero .cta-statement {
    font-size: 4em;
    margin: 20px 0;
}
.hero .service-area {
    font-size: 3.5em;
    margin-bottom: 30px;
}
.hero button {
    background-color: #ffcc00;
    color: black;
    font-weight: bold;
    border: none;
    padding: 1em 2em;
    font-size: 1.5em;
    cursor: pointer;
    transition: background-color 0.3s;
}
.hero button:hover {
    background-color: #ff9900;
}
.container {
    padding: 2em;
    font-size: 1.5em;
}
.about-us {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about-us .text {
    width: 50%;
    margin-right: 2em;
}
.about-us img {
    width: 50%;
    height: auto;
}
.about-us h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
}
.sprig {
    width: 225px;
    margin-left: 10px;
}
.service, .testimonial {
    margin-bottom: 1.5em;
}
.gallery img {
    width: 100%;
    height: auto;
}
.cta, .contact-form {
    background-color: #f7f7f7;
    padding: 2em;
    text-align: center;
}
.cta button, .contact-form button {
    background-color: #3c763d;
    color: white;
    border: none;
    padding: 1em 2em;
    cursor: pointer;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
    border: 1px solid #ccc;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .social-icons img {
    width: 30px;
    margin: 0 10px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-container {
    margin-right: auto;
}
header nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}
header nav a {
    text-decoration: none;
    color: white;
    margin-left: 20px;
}
.facebook-icon {
    margin-left: 10px;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
}
.service {
    display: flex;
    align-items: center;
    flex: 1 1 calc(50% - 1em);
    margin: 0.5em;
}
.icon-column {
    flex: 0 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.text-column {
    flex: 1;
    padding-left: 1em;
}
@media (max-width: 768px) {
    .service {
        flex: 1 1 100%;
        margin: 0.5em 0;
    }
    .hero {
        padding: 50px 0;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .hero .cta-statement {
        font-size: 2em;
    }
    .hero .service-area {
        font-size: 1.5em;
    }
    .hero button {
        font-size: 1em;
        padding: 0.75em 1.5em;
    }
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 5px;
    }
    .logo-container {
        flex: 0 1 auto;
    }
    header nav {
        flex: 1;
        flex-direction: column;
        align-items: flex-end;
        padding-top: 0;
    }
    header nav a {
        margin-left: 0;
        margin-top: 5px;
        white-space: nowrap;
    }
    .container {
        font-size: 1em;
        padding: 1em;
    }
    .about-us {
        flex-direction: column;
    }
    .about-us .text {
        width: 100%;
        margin: 0 0 1em 0;
        font-size: 1em;
    }
    .about-us img {
        width: 100%;
    }
    .about-us h2 {
        font-size: 1.5em;
    }
    .sprig {
        width: 125px;
        margin-left: 10px;
    }
}