/* Project Type Cards */
.project-type-card {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.12) 0%, rgba(0, 150, 136, 0.12) 100%);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 200, 83, 0.25);
  transition: all 0.3s ease;
}

.project-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 200, 83, 0.15);
  border-color: rgba(0, 200, 83, 0.4);
}

.project-type-card h4 {
  color: #00c853;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-type-card h4 i {
  font-size: 1.6rem;
  color: #00c853;
}

.project-type-card p {
  color: #e0f2e9;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .project-type-card {
    padding: 22px;
  }
  
  .project-type-card h4 {
    font-size: 1.2rem;
  }
  
  .project-type-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .project-type-card {
    padding: 18px;
  }
  
  .project-type-card h4 {
    font-size: 1.1rem;
  }
  
  .project-type-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}