
  .ein-stat-box {
    background-color: #011f3c;
    border-left: 4px solid #fff;
    transition: all 0.3s ease;
    color: #ffffff;
  }

  .ein-stat-box:hover {
    background-color: #FFD700 !important;
    color: #001938 !important;
  }

  .ein-stat-box:hover h4,
  .ein-stat-box:hover p {
    color: #001938 !important;
  }

  .ein-stat-box:hover .text-warning {
    color: #001938 !important;
  }
  
  .step-badge {
    background-color: #FFD700; /* EIN Gold */
    color: #001938;             /* EIN Navy */
    font-weight: 700;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
  }
  .how-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  .how-step-text {
    margin-left: 1rem;
  }
  .how-step-text h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #001938;
  }
  
  .hover-block {
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }

  .hover-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #FFD700; /* EIN Gold */
    background-color: #fdfdfd;
  }
  
  .transition-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.25rem rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }