body {
  background-color: #d8e6d4;
  font-family: 'Georgia', serif;
}

.navbar {
  background-color: #fdf6ec;
}

.navbar-brand {
  font-weight: bold;
}

.hero-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f3d1f;
}

.hero-sub {
  color: #1f3d1f;
  font-size: 1rem;
}

.service-title {
  font-size: 1.3rem;
  margin-top: 15px;
  font-weight: 500;
  color: #1f3d1f;
}

/* Uniform service images */
.service-img {
  width: 100%;
  height: 220px;              /* Ensures all images same height */
  object-fit: cover;          /* Crops neatly without distortion */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease-in-out;
}

.service-img:hover {
  transform: scale(1.05);
}

/* Make all service columns equal height */
.row.g-4 > [class*="col-"] {
  display: flex;
}

/* Service card alignment */
.service-card {
  background: #fdf6ec;
  border-radius: 12px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  flex-grow: 1;
}

.service-text {
  font-size: 0.95rem;
  color: #555;
  margin-top: auto;        /* pushes text block to bottom */
}

/* Footer */
footer {
  background-color: #fdf6ec;
  padding: 20px 0;
  margin-top: 40px;
}

footer p {
  margin: 0;
  color: #1f3d1f;
}

/* Accordion */
.accordion-button {
  background-color: #1f3d1f !important;
  color: white !important;
}

.accordion-button:focus {
  box-shadow: none;
}

/* Custom card */
.card-custom {
  background-color: #fdf6ec;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  padding: 20px;
}