.categories-section {
  padding: 100px 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: #e8f5ee;
  color: #184d3b;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #111827;
  margin: 20px 0 15px;
}

.section-subtitle {
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all .3s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.category-icon {
  width: 90px !important;
  height: 90px !important;
  min-width: 90px;
  min-height: 90px;
  margin: 0 auto 25px;
  background: #064731;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 34px;
  flex-shrink: 0;
}

.category-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.category-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.category-card a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.category-card a:hover {
  color: #2fad46 !important;
}

@media (max-width: 991px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .category-card {
    padding: 30px 25px;
  }
}

