
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2 {
    text-align: center;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #004d00;
    color: white;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

/* Hero Section */
.hero {
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

/* About Section */
.about, .services, .contact {
    text-align: center;
    padding: 50px;
    background: #f4f4f4;
}

.service-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.service {
    background: #004d00;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

/* Contact Section */
.contact a {
    color: #004d00;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #004d00;
    color: white;
}
