body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: #2E8B57;
    color: white;
    padding: 15px;
    text-align: center;
}

.header-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

nav ul {
    list-style: none;
    padding: 0;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 1;
}

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

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary {
    background: #FFD700; /* Gold color */
    color: #333;
}

.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #FFD700;
    color: #333;
    transform: translateY(-2px);
}

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

.hero h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #FFD700;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e6c200;
}

.about-us, .testimonials, .service-list, .contact-form, .contact-info {
    padding: 50px 20px;
    text-align: center;
}

.about-us h2, .testimonials h2, .service-list h2, .contact-form h2, .contact-info h2 {
    margin-bottom: 20px;
}

.testimonials .testimonial {
    background: white;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list ul li {
    background: white;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-gallery .gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-gallery .gallery img {
    width: 30%;
    margin: 10px 0;
    border-radius: 5px;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #2E8B57;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #1f6a3d;
}

.contact-info p {
    margin: 10px 0;
}

footer {
    background: #2E8B57;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    margin-top: 50px;
}