/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333333;
}

/* Site Title (center at top) */
.site-title {
  text-align: center;
  padding: 15px 0;
}
.site-title h1 {
  margin: 0;
  font-size: 2.2em;
  color: #2e7d32; /* Primary green */
}

/* Header with logo + tagline left, menu right */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
}
header .logo {
  max-width: 120px;
  display: block;
}
header .tagline {
  font-size: 1.1em;
  color: #555555;
  margin-top: 5px;
}

/* Left side (logo + tagline grouped) */
header .left-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Navigation Bar (right aligned) */
.main-nav {
  display: flex;
  justify-content: flex-end;
  background-color: #2e7d32; /* Primary green */
  padding: 10px 40px;
}
.main-nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #c8e6c9; /* Light green hover */
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px;
}
.service-box {
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  transition: all 0.3s ease;
}
.service-box h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #2e7d32;
}
.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-box ul li {
  margin: 5px 0;
}
/* Hover effect */
.service-box:hover {
  background: #2e7d32;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}
.service-box:hover h2,
.service-box:hover ul li {
  color: #ffffff;
}

/* Buttons */
button, .cta-button {
  background-color: #2e7d32;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s ease;
}
button:hover, .cta-button:hover {
  background-color: #1b5e20;
}

/* Footer */
footer {
  background-color: #2e7d32;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}
