.consult-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.consult-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.consult-card-small {
  width: calc(28% - 2rem);
  min-width: 250px;
}

.consult-card-medium {
  width: calc(32% - 2rem);
  min-width: 280px;
}

.consult-card-large {
  width: calc(40% - 2rem);
  min-width: 320px;
}

.consult-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.consult-card-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  color: white;
}

.consult-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.consult-card-content {
  padding: 1.5rem;
  flex-grow: 1;
}

.consult-content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consult-content-list li {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.2rem;
  line-height: 1.4;
  font-size: 1rem;
  color: #4a5568;
}

.consult-content-list li:before {
  content: "•";
  color: #4299e1;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 0.8rem;
}

.consult-content-list li strong {
  display: block;
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
  .consult-card-small, .consult-card-medium, .consult-card-large {
    width: 100%;
  }
}




/* steps  */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f8fafc;
  color: #334155;
  line-height: 1.6;
}

.steps-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
}

.steps-heading {
  text-align: center;
  margin-bottom: 60px;
}

.steps-heading h2 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #3b82f6, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.steps-heading p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #64748b;
}

.step-timeline {
  position: relative;
  margin: 40px 0;
}

.step-timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(180deg, #3b82f6, #0ea5e9);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
}

.step {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 100px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-content {
  width: 45%;
  padding: 30px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0.8;
  transform: translateY(20px);
}

.step:hover .step-content {
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
  opacity: 1;
  transform: translateY(0);
}

.step:nth-child(odd) .step-content {
  margin-left: auto;
}

.step-number {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3b82f6;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
  color: white;
  box-shadow: 0 0 0 10px rgba(59, 130, 246, 0.3);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.step-description {
  color: #64748b;
  margin-bottom: 15px;
}

.step-actions {
  margin-top: 20px;
}

.step-btn {
  background: #f1f5f9;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  color: #3b82f6;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.step-btn:hover {
  background: #e2e8f0;
}

@media screen and (max-width: 768px) {
  .step-timeline::before {
    left: 30px;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-content {
    width: 85%;
    margin-left: auto !important;
  }
  
  .step-number {
    left: 30px;
    top: 15px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}






