/* Scan to CAD - Services Grid Section */
.scan-tocad5-section {
  padding: 50px;
  background-color: #000000;
  color: #ffffff;
}

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

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

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

.stc5-main-desc {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.stc5-card:hover {
  border-color: #54b248;
  background-color: rgba(84, 178, 72, 0.08);
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(84, 178, 72, 0.15);
}

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

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

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

.stc5-card-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

@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;
  }
}