:root {
        --navy: #101d3e;
        --red: #f4070b;
        --white: #ffffff;
      }

      * {
        box-sizing: border-box;
      }


      body {
        margin: 0;
        min-height: 100vh;
        display: grid;
        place-items: center;
        background: var(--white);
        color: var(--navy);
        font-family: Arial, Helvetica, sans-serif;
      }


      .steps {
        width: min(100%, 905px);
        padding: 28px 64px 24px 66px;
        background: var(--white);
      }

      .step {
        display: grid;
        grid-template-columns: 86px 1fr;
        column-gap: 26px;
        align-items: start;
      }

      .step + .step {
        margin-top: 24px;
      }

      .badge {
        width: 82px;
        aspect-ratio: 1;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--red);
        color: var(--white);
        font-size: 3.35rem;
        line-height: 1;
        font-weight: 900;
        letter-spacing: 0;
      }

      .copy {
        padding: 1rem; 
        font-size: 1.2rem;
        /* line-height: 1.18; */
        font-weight: 700;
        letter-spacing: 0.2px;
      }

      .keyword {
        font-size: 3rem;
        line-height: 0.85;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-right: 8px;
      }

      .details {
        margin: 2px 0 0;
        padding-left: 25px;
        list-style-position: outside;
      }

      .details li {
        margin: 1px 0;
      }

      @media (max-width: 720px) {
        .steps {
          padding: 24px 22px;
        }

        .step {
          grid-template-columns: 62px 1fr;
          column-gap: 16px;
        }

        .badge {
          width: 62px;
          font-size: 2.45rem;
        }

        .copy {
          padding-top: 7px;
          font-size: 1.05rem;
        }

        .keyword {
          display: block;
          margin: 0 0 5px;
          font-size: 2.1rem;
          line-height: 0.95;
        }
      }


