/* Global Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff9d6; /* light yellow */
  color: #004225; /* dark green text */
  line-height: 1.6;
}

header {
  background-color: #006400; /* dark green */
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

header .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

header .logo-container img {
  height: 50px;
  width: auto;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  background-color: #fff5c2; /* pale yellow section */
  padding: 80px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.button {
  display: inline-block;
  background-color: #006400; /* dark green */
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.button:hover {
  background-color: #004f2e; /* slightly darker */
}

.overview {
  padding: 40px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.overview h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

footer {
  background-color: #fff5c2; /* pale yellow */
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Services page styles */
.service-category {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
}

.service-category h2 {
  color: #006400;
  margin-top: 0;
}

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

.service-category li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
/* Increase logo size */
header .logo-container img {
    height: 120px;
}

/* Increase logo size x4 */
header .logo-container img {
    height: 200px;
}

/* Extra large logo size */
header .logo-container img {
  height: 400px;
}


.service-category li:last-child {
  border-bottom: none;
}

.service-category li span.price {
  font-weight: bold;
  color: #006400;
}

/* Contact & About pages */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
