.how-it-works-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
  }
  
  .how-it-works-section .section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #234754;
  }
  
  .how-it-works-section .section-subtitle {
    font-size: 16px;
    color: #234754;
    margin-bottom: 40px;
  }
  
  .steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }
  
  .step {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    width: 260px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-5px);
  }
  
  .step-number {
    font-size: 22px;
    font-weight: bold;
    color: #0071e3;
    margin-bottom: 12px;
    border: 2px solid #0071e3;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  
  .step h3 {
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 10px;
    color: #0071e3;
  }
  
  .step p {
    font-size: 14px;
    color: #234754;
  }
  