/* General Body */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #1F3D1C;
}

/* Header */
header {
  text-align: center;
  padding: 1rem 0;
  background: #ffffff;
  border-bottom: 2px solid #1F3D1C;
}

.header-logo img {
  height: 80px;
  margin-bottom: 10px;
}

nav a {
  color: #1F3D1C;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
}

nav a:hover {
  color: #2e7d32;
}

/* Hero Section */
.hero {
  background: url('hero.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
}

.hero-logo {
  width: 200px;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background: #1F3D1C;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #2e7d32;
}

/* Content Sections */
.content {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 6px;
}

.content ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Service Areas Columns */
.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.columns ul {
  flex: 0 0 45%;
}

/* Forms */
form input,
form textarea {
  width: 100%;
  padding: 0.6rem;
  margin: 0.5rem 0 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #1F3D1C;
  color: white;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #2e7d32;
}

/* Footer */
footer {
  margin-top: 3rem;
  padding: 1rem;
  text-align: center;
  background: #e5f0e6;
  color: #1F3D1C;
}

/* Responsive */
@media (max-width: 768px) {
  .columns ul {
    flex: 0 0 100%;
    margin-bottom: 1rem;
  }
}
