.container {
  display: flex;
  flex-direction: column;
  width: 800px;
  background: none;
}

.mainHeading {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  color: #29323c;
  line-height: 40.5px;
  margin-bottom: 0px;
}

.listContainer {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
  margin-bottom: 27px;
}

.listItem {
  display: flex;
  align-items: center;
  /* height: 44px; */
  gap: 10px;
}

.iconWrapper {
  width: 1.25em;
  height: 1.25em;
  min-width: 1.25em;
  min-height: 1.25em;
  background: #fec91a;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 10.5px;
  height: 10.5px;
  min-width: 10.5px;
  min-height: 10.5px;
}

.rectangle {
  width: 20.25px;
  height: 54px;
  background: transparent;
}

.text {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125em;
  color: #262f40;
  line-height: 54px;
}

.instructionsHeading {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875em;
  font-weight: 700;
  color: #29323c;
  line-height: 31.5px;
  margin-bottom: 5px;
}

  
.instructionsList {
  list-style-type: disc; /* Ensures bullet points appear */
  display: flex;
  flex-direction: column;
  gap: 0px;
  /* margin-left: 15px; */
}
.instructionItem svg{
  min-width: 8px;
  min-height: 8px;
}
.instructionItem {
  margin-bottom: 8px; /* Adds spacing between items */
  font-size: 16px; /* Adjusts text size */
  color: #333; /* Darkens text for visibility */
  display: flex;
  align-items: center;
  /* height: 42px; */
  gap: 8px;
}

.instructionIcon {
  width: 22.5px;
  height: 42px;
  border-radius: 32.25px;
  display: flex;
  align-items: center;
}

.bulletIcon {
  width: 22.5px;
  height: 22.5px;
}

.instructionRectangle {
  width: 13.13px;
  height: 42px;
  background: transparent;
}

.instructionText {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875em;
  color: #262f40;
  line-height: 42px;
}

@media (max-width: 768px) {
  .instructionItem {
    align-items: flex-start;
  }
  .instructionItem svg{
    min-width: 8px;
    min-height: 8px;
    margin-top: 9px;
  }
  .container {
    padding: 15px;
  }

  .mainHeading {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 25px;
}
  .text {
    font-size: 14px;
    line-height: 22px;
    margin-top: 10px;
}

  .instructionText {
    font-size: 16px;
    line-height: 26px;
  }
}

@media screen and (max-width:992px) {
  .container {
    width: 100%;
  }
}