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

body {
  background-color: #ffffff; /* Primarily white theme */
  color: #333;
  line-height: 1.6;
}

/* Header / Logo Section */
.logo-section {
  background-color: #ffffff; /* White background for logo section */
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 3px solid #2e7d32; /* green accent */
}

.logo {
  width: 120px;
  margin-bottom: 1rem;
}

.logo-section h1 {
  color: #2e7d32; /* Green text */
  margin-bottom: 0.5rem;
}

.logo-section p {
  color: #666;
  font-size: 1.1rem;
}

/* Sections */
section {
  padding: 3rem 2rem;
  position: relative;
}

/* Add subtle abstract green backgrounds */
section::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(46, 125, 50, 0.08);
  border-radius: 50%;
  z-index: -1;
}

section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: rgba(46, 125, 50, 0.05);
  border-radius: 50%;
  z-index: -1;
}

h2 {
  color: #2e7d32;
  margin-bottom: 1rem;
  text-align: center;
}

p {
  max-width: 800px;
  margin: 0 auto 1rem auto;
  text-align: center;
}

/* Service Cards */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.service-card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  width: 280px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.service-card h3 {
  color: #2e7d32;
  margin-bottom: 0.5rem;
}

/* Contact Section */
.contact p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* Footer */
footer {
  text-align: center;
  background-color: #2e7d32;
  color: #fff;
  padding: 1rem;
  margin-top: 2rem;
}
