.step-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 30px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.step-box {
  background-color: #d4c092;
  color: white;
  padding: 15px 20px;
  border-radius: 0 6px 6px 0;
  margin-left: -10px;
  position: relative;
  flex: 1;
}

.step-box::after {
  content: "";
  position: absolute;
  right: -38px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 58px solid transparent;
  border-bottom: 58px solid transparent;
  border-left: 40px solid #d4c092;
}

.step-title {
  font-weight: bolder;
  margin-bottom: 4px;
  font-size: 28px;
}

.step-desc {
  font-size: 20px;
}

@media only screen and (max-width: 1000px) and (min-width: 300px){
    .step-container {
        width: 90%;
    }

    .step-desc {
        font-size: 18px;
    }

    .step-title {
        font-size: 26px;
    }

    .step-box::after {
        content: "";
        position: absolute;
        right: -36px;
        top: 0px;
        width: 0;
        height: 0;
        border-top: 44px solid transparent;
        border-bottom: 44px solid transparent;
        border-left: 40px solid #d4c092;
    }

    @media only screen and (max-width: 900px){
        .step-box::after {
            display: none;
        }
    }
}

@media (min-width: 1000px) and (max-width: 1500px) {
    .step-container {
        max-width: 1100px;
        width: 90%;
    }

    .step-desc {
        font-size: 20px;
    }

    .step-title {
        font-size: 30px;
    }

    .step-box::after {
        display: none;
    }
}