
  html,
  body {
    overflow-x: hidden;
  }

  .ee-match-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #f3f5f7;
    padding: 70px 20px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }

  .ee-match-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 60px;
    align-items: center;
  }

  .ee-match-left h2,
  .ee-info-box h2 {
    margin: 0 0 32px;
    color: #111827;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
  }

  .ee-steps {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .ee-step {
    position: relative;
    flex: 1;
    min-width: 120px;
  }

  .ee-step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #d71920;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(215, 25, 32, 0.25);
  }

  .ee-step-card {
    background: #ffffff;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    min-height: 150px;
    padding: 26px 12px 18px;
    text-align: center;
    box-sizing: border-box;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  }

  .ee-step-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    color: #111827;
  }

  .ee-step-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .ee-step-card h3 {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
  }

  .ee-arrow {
    position: relative;
    width: 50px;
    height: 150px;
    flex: 0 0 50px;
  }

  .ee-arrow::before {
    content: "";
    position: absolute;
    top: 33px;
    left: 0;
    width: 42px;
    height: 2px;
    background: #111827;
  }

  .ee-arrow::after {
    content: "";
    position: absolute;
    top: 28px;
    right: 3px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #111827;
    border-right: 2px solid #111827;
    transform: rotate(45deg);
  }

  .ee-info-box {
    background: #ffffff;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    padding: 36px 42px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    box-sizing: border-box;
  }

  .ee-info-box h2 {
    margin-bottom: 22px;
    font-size: 26px;
  }

  .ee-info-box ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
  }

  .ee-info-box li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 13px;
    color: #374151;
    font-size: 16px;
    line-height: 1.45;
  }

  .ee-info-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d71920;
  }

  .ee-note {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    align-items: center;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 20px;
  }

  .ee-note-icon {
    width: 32px;
    height: 32px;
    border: 2px solid #d71920;
    color: #d71920;
    border-radius: 50%;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
  }

  .ee-note p {
    margin: 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.55;
  }

  @media (max-width: 991px) {
    .ee-match-section {
      padding: 60px 20px;
    }

    .ee-match-container {
      grid-template-columns: 1fr;
      gap: 45px;
    }

    .ee-steps {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 18px;
    }

    .ee-arrow {
      display: none;
    }
  }

  @media (max-width: 575px) {
    .ee-match-section {
      padding: 50px 15px;
    }

    .ee-match-left h2,
    .ee-info-box h2 {
      font-size: 24px;
    }

    .ee-steps {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .ee-info-box {
      padding: 28px 22px;
    }

    .ee-step-card {
      min-height: 145px;
    }
  }
