/* [project]/src/styles/service/ScanToCad5.css [client] (css) */
.scan-tocad5-section {
  color: #fff;
  background-color: #000;
  padding: 50px;
}

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

.stc5-header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 70px;
}

.stc5-main-title {
  margin-bottom: 25px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.stc5-main-desc {
  color: #ffffffe6;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

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

.stc5-card {
  background-color: #0000;
  border: 3px solid #57b041;
  border-radius: 12px;
  height: auto;
  padding: 40px;
  transition: all .3s;
}

.stc5-card:hover {
  background-color: #54b24814;
  border-color: #54b248;
  transform: translateY(-8px);
  box-shadow: 0 10px 40px #54b24826;
}

.stc5-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.stc5-icon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.stc5-card-title {
  color: #54b248;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 600;
}

.stc5-card-desc {
  color: #ffffffd9;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .stc5-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .stc5-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .scan-tocad5-section {
    padding: 40px 20px;
  }

  .stc5-main-title {
    font-size: 32px;
  }

  .stc5-card {
    padding: 25px 20px;
  }

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

@media (max-width: 480px) {
  .stc5-main-title {
    font-size: 26px;
  }

  .stc5-main-desc {
    font-size: 15px;
  }

  .stc5-card-desc {
    font-size: 14px;
  }
}

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