.how-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    background-color: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.8rem;
  color: #10367A;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step {
    text-align: left;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin: 0 0 1rem 0;
  }

  .step p {
    max-width: 100%;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding: 1rem;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background-color: #FE5716;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.step h3 {
  font-size: 1.25rem;
  color: #10367A;
  margin-bottom: 1rem;
}

.step p {
  color: #000000;
  line-height: 1.6;
}

/* Mobile improvements */
@media (max-width: 767px) {
  .how-section { padding: 12px; }
  .section-header { margin-bottom: 1.5rem; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 1rem; max-width: 100%; padding: 0 8px; }

  .steps-grid { gap: 1rem; }
  .step { padding: 12px; border-radius: 12px; background: #FFFFFF; box-shadow: 0 4px 12px rgba(16, 16, 16, 0.04); margin: 0; }

  .step-number { width: 56px; height: 56px; font-size: 1.25rem; margin-bottom: 12px; }
  .step h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .step p { font-size: 1rem; line-height: 1.5; }

  .step { display: flex; flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 420px) {
  .how-section { padding: 10px 8px; }
  .step-number { width: 48px; height: 48px; font-size: 1.1rem; }
  .step h3 { font-size: 1rem; }
  .step p { font-size: 0.95rem; }
  .section-header { margin-bottom: 1rem; }
  .steps-grid { gap: 12px; }
}