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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

header {
    background: #FFF;
    color: white;
    padding: 20px 0;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

h1 {
    text-align: center;
}

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

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

nav ul li a {
    color: #000080;
    text-decoration: none;
}

.hero {
    background: url('landscaping.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-button {
    background: #FFD700;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.services, .testimonials, .contact {
    padding: 50px 0;
    text-align: center;
}

.service {
    margin: 20px 0;
}

.service-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.service-image1 {
    width: 400px;
  height: 200px;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}
.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

form input, form textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #45a049;
}

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

/* Media Queries */

@media (max-width: 768px) {
    .container {
        width: 90%;
    }

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

    .hero {
        padding: 60px 0;
    }

    .cta-button {
        padding: 8px 16px;
    }

    .services, .testimonials, .contact {
        padding: 30px 0;
    }

    .service {
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    .hero h2 {
        font-size: 26px;
    }

    .hero p {
        font-size: 18px;
    }

    form {
        max-width: 90%;
    }

    button {
        padding: 8px;
    }
}