/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff; /* White background */
    color: #333333; /* Dark gray text */
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #004d00; /* Dark Green */
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #66cc66; /* Light Green Hover Effect */
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #e6ffe6, #ffffff); /* Gradient with green tint */
    color: #004d00; /* Dark Green Text */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.hero .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #004d00; /* Dark Green */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hero .cta-button:hover {
    background-color: #66cc66; /* Light Green Hover */
}

/* Services Section */
.services {
    padding: 60px 20px;
    background-color: #f9fff9; /* Subtle Green Tint */
    color: #004d00; /* Dark Green */
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #004d00;
}

.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item {
    flex: 1 1 30%;
    padding: 20px;
    border: 1px solid #66cc66; /* Light Green Border */
    border-radius: 8px;
    background-color: #ffffff; /* White Background */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #004d00;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px;
    background-color: #004d00; /* Dark Green */
    color: white;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-item {
        flex: 1 1 100%;
    }
}
