/* Contact Icon */
.contact-icon {
  width: 48px;
  height: 48px;
  background-color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

/* Card Styles */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Form Styles */
.form-control:focus,
.form-select:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.25);
}

/* Button Styles */
.btn-success {
  background-color: #22c55e;
  border-color: #22c55e;
}

.btn-success:hover {
  background-color: #16a34a;
  border-color: #16a34a;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

