/* What We Do Section Styles */
.what-we-do-section {
  background-color: #eef1f2;
  padding: 60px 0;
}

.what-we-do-container {
  margin: 0 auto;
  padding: 0 15px;
}

.what-we-do-header {
  text-align: center;
  margin-bottom: 40px;
}

.what-we-do-title {
  color: var(--bs-success);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.what-we-do-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 80px;
  margin-top: 100px;
  margin-bottom: 30px;
}

.service-card {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
  margin-bottom: 20px;
  position: relative;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bs-success);
  border-radius: 50%;
  opacity: 0.1;
}

.service-icon i {
  font-size: 28px;
  color: var(--bs-success);
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.additional-services {
  text-align: center;
  color: #555;
  line-height: 1.8;
  max-width: 1000px;
  margin: 0 auto;
  font-size: 0.95rem;
}

/* Responsive styles */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .what-we-do-title {
    font-size: 2rem;
  }
}

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

  .service-card {
    padding: 20px 15px;
  }
}
