      .trade_selection {
          padding: 20px 0px;
          background: var(--bg-color);
      }

      .trade_selection h1 {
          padding-bottom: 20px;
      }

      .trade_selection p {
          color: #2d3748;
          font-size: 20px;
          font-weight: 300;
          line-height: 1.5;
      }

      .trade_selection .process-steps {
          display: flex;
          flex-direction: column;
          gap: 30px;
          margin-top: 40px;
      }

      .trade_selection .step {
          display: flex;
          align-items: center;
          gap: 30px;
      }

      .trade_selection .step-number {
          width: 80px;
          height: 80px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 2rem;
          font-weight: 700;
          flex-shrink: 0;
      }

      .trade_selection .step {
          display: flex;
          align-items: center;
          gap: 30px;
      }

      .trade_selection .selection-card {
          background: var(--bg-color);
          border-radius: 20px;
          box-shadow: 12px 12px 24px #d1d9e6, -12px -12px 24px #ffffff;
          padding: 40px;
          border: 1px solid rgba(255, 255, 255, 0.6);
      }

      .trade_selection .step-number {
          width: 80px;
          height: 80px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 2rem;
          font-weight: 700;
          flex-shrink: 0;
      }

      .trade_selection .selection-btn {
          background: #f0f0f3;
          color: #2d3748;
          border: none;
          padding: 15px 30px;
          border-radius: 50px;
          font-weight: 600;
          font-size: 2rem;
          cursor: pointer;
          font-weight: bold;
          box-shadow: 6px 6px 12px #d1d9e6, -6px -6px 12px #fff;
          transition: all 0.2s ease;
      }

      .trade_selection .selection-card h3 {
          color: #2d3748;
          font-size: 22px;
          font-weight: bold;
          padding-bottom: 10px;
      }

      .trade_selection .selection-card p {
          color: #2d3748;
          font-size: 25px;
          font-weight: 300;
          padding-bottom: 10px;
          font-size: 20px;
          line-height: 1.5;
      }

      @media (min-width:1200px) and (max-width:1399px) {
          .trade_selection h1 {
              font-size: 24px;
              padding-bottom: 5px;
          }

          .trade_selection p {
              font-size: 16px;
          }

          .trade_selection .selection-card h3 {
              font-size: 18px;
          }

          .trade_selection .selection-card p {
              font-size: 15px;
          }

          .trade_selection .selection-btn {
              font-size: 22px;
          }

          .trade_selection .step-number {
              width: 70px;
              height: 70px;
          }
      }

      @media (min-width:1400px) and (max-width:1500px) {
          .trade_selection h1 {
              font-size: 30px;
          }

          .trade_selection p {
              font-size: 18px;
          }

          .trade_selection .selection-card h3 {
              font-size: 19px;
          }

          .trade_selection .selection-card p {
              font-size: 17px;
          }
      }

      @media (max-width:990px) {
          .trade_selection p {
              font-size: 16px;
          }

          .trade_selection .step {
              display: flex;
              align-items: center;
              flex-direction: column;
              gap: 30px;
          }

          .trade_selection .selection-card p {
              font-size: 17px;
              text-align: justify;
          }

          .trade_selection .selection-card h3 {
              font-size: 18px;
          }
      }