/* [project]/src/styles/service/ServiceExplore.css [client] (css) */
.service-explore-section {
  background-color: #000;
  width: 100%;
  padding: 80px 40px;
}

.service-explore-container {
  max-width: 1400px;
  margin: 0 auto;
}

.explore-header {
  text-align: center;
  margin-bottom: 30px;
}

.explore-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 25px;
  line-height: 1.3;
}

.explore-subtitle {
  color: #fff;
  opacity: .8;
  max-width: 900px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  font-family: var(--font-body);
  margin: 0 auto;
}

.explore-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  display: grid;
}

.explore-card {
  background: #eaf6e5;
  border: 2px solid #54b248;
  border-radius: 12px;
  flex-direction: column;
  padding: 35px;
  transition: all .3s;
  display: flex;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px #54b24833;
}

.explore-icon {
  color: #54b248;
  margin-bottom: 25px;
}

.explore-card-title {
  color: #1a1a1a;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 15px;
  line-height: 1.3;
}

.explore-card-text {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  font-family: var(--font-body);
}

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

@media (max-width: 768px) {
  .service-explore-section {
    padding: 50px 20px;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .explore-title {
    font-size: 28px;
  }

  .explore-subtitle {
    font-size: 16px;
  }

  .explore-card-title {
    font-size: 22px;
  }

  .explore-card-text {
    font-size: 16px;
  }

  .explore-icon img {
    width: 75px !important;
    height: 65px !important;
  }
}

/*# sourceMappingURL=src_styles_service_ServiceExplore_css_65f1660e._.single.css.map*/