/* Services Page 3-Column Layout Styles */



/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primaryGreen), var(--darkGreen));
  color: var(--white);
  padding: 120px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--HeaderFont);
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-header p {
  font-family: var(--BodyFont);
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* All Services Section */
.all-services-section {
  padding: 60px 0;
  /* background: var(--white); */
}

/* 3-Column Services Grid - Compact */
.services-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}

.service-card {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  /* border: 1px solid rgba(0, 115, 88, 0.1); */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); */
}

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

.service-icon {
  width: 45px;
  height: 45px;
  /* background: var(--primaryGreen); */
  background: var(--white);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primaryGreen);
  font-weight: 600;
  font-family: var(--HeaderFont);
  line-height: 1.3;
}

.service-card p {
  color: var(--mediumGray);
  line-height: 1.4;
  font-size: 13px;
  font-family: var(--BodyFont);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .services-grid-3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .services-grid-3col {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .all-services-section {
    padding: 40px 0;
  }

  .service-card {
    padding: 15px;
    gap: 12px;
  }

  .service-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.3;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }
}
