/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #2E7D32;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #5D4037;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle-label span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle:checked+.nav-toggle-label span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle:checked+.nav-toggle-label span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked+.nav-toggle-label span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        background-color: #2E7D32;
    }

    nav ul li {
        text-align: center;
    }

    .nav-toggle-label {
        display: flex;
    }

    .nav-toggle:checked~ul {
        display: flex;
    }
}

/* Hero Section Styles */
.hero {
    background-image: url('assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 5rem 1rem;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.cta-button {
    background-color: #5D4037;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #333;
}

/* Services Section Styles */
.services {
    background-color: #f9f9f9;
    padding: 2rem 1rem;
    text-align: center;
}

.services h2 {
    margin-bottom: 1rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-item {
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item img {
    max-width: 50px;
    margin-bottom: 0.5rem;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-badge {
    margin-top: 1rem;
    font-size: 1rem;
    color: #5D4037;
}

/* About Us Section Styles */
.about {
    padding: 2rem 1rem;
    text-align: center;
}

.about h2 {
    margin-bottom: 1rem;
}

/* Contact Section Styles */
.contact {
    background-color: #f9f9f9;
    padding: 2rem 1rem;
    text-align: center;
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact-card {
    margin-bottom: 2rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

#contact-form label {
    font-weight: bold;
}

#contact-form input,
#contact-form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact-form button {
    background-color: #2E7D32;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #5D4037;
}

.map {
    margin-top: 2rem;
}

/* Footer Styles */
footer {
    background-color: #2E7D32;
    color: #fff;
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer p {
    margin: 0.5rem 0;
}

.tree-icon {
    font-size: 2rem;
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services h2 {
        font-size: 1.5rem;
    }

    .about h2 {
        font-size: 1.5rem;
    }

    .contact h2 {
        font-size: 1.5rem;
    }
}