/* Styling for Section 3 */
.section3 {
  background-color: #ffc73c;
  padding-top: 5%;
  padding-bottom: 5%;
  display: flex;
  justify-content: center;
}

.section3 .container-option-boxes {
  width: 95%;
}

/* Styling for option boxes within Section 3 */
.section3 .options-boxes .options-yellow-black {
  min-width: 25%;
}

.first-part-box-spec {
  height: 30%;
  display: flex;
}

/* Set the height of main icons within option boxes */
.section3
  .options-boxes
  .options-yellow-black
  .option-image
  .main-icon-spec
  img {
  height: 90pt;
}

/* Padding for the first part of option boxes */
.section3 .options-boxes .options-yellow-black .first-part-box-spec {
  padding-bottom: 5%;
  padding-top: 5%;
}

/* Styling for white description box in the first part of option boxes */
.section3
  .options-boxes
  .options-yellow-black
  .first-part-box-spec
  .white-description {
  display: flex;
  background-color: #fff;
  border-radius: 5pt;
  width: 80%;
  height: 100%;
  padding: 10%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Styling for the last part of the description box with yellow background */
.section3
  .options-boxes
  .options-yellow-black
  .last-part-box-spec
  .white-description {
  display: flex;
  background-color: #ffc73c;
  border-radius: 5pt;
  width: 80%;
  height: 100%;
  padding: 10%;
}

/* Center-align text within the description boxes */
.section3
  .options-boxes
  .options-yellow-black
  .first-part-box-spec
  .white-description
  .white-description-para {
  display: flex;
  align-items: center;
}

.section3
  .options-boxes
  .options-yellow-black
  .first-part-box-spec
  .white-description
  .white-description-para
  .paragraph-description {
  display: flex;
  align-items: center;
}

.wrapper-for-para-text {
  line-height: 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 10.7;
}

/* Styling caution icon within the white description box */
.section3
  .options-boxes
  .options-yellow-black
  .white-description
  .caution-icon-i {
  display: flex;
  align-items: center;
}

.section3
  .options-boxes
  .options-yellow-black
  .white-description
  .caution-icon-i
  img {
  height: 25pt;
}

/* Centering images and buttons within option spec box */
.section3
  .options-boxes
  .options-yellow-black
  .option-spec-button-img-box
  .option-image {
  display: flex;
  justify-content: center;
}

.section3
  .options-boxes
  .options-yellow-black
  .option-spec-button-img-box
  .option-image
  .main-icon-spec {
  display: flex;
  justify-content: center;
}

.section3
  .options-boxes
  .options-yellow-black
  .option-spec-button-img-box
  .option-image-button {
  display: flex;
  justify-content: center;
}

/* Button styling within the option image button box */
.section3
  .options-boxes
  .options-yellow-black
  .option-spec-button-img-box
  .option-image-button
  button {
  background-color: #2a7a6c;
  color: #fff;
  border: none;
  border-radius: 5pt;
  padding: 6pt;
  margin-top: 15%;
  width: 120pt;
  font-family: "Poppins", sans-serif;
  font-size: 14.8;
}

.set-of-second-part-option-image {
  background-color: #ffc73c;
  width: 70%;
}

.second-part-option-image {
  background-color: #ffc73c;
  min-width: 64%;
  display: flex;
  justify-content: left;
}

/* Yellow background box in alignment box */
.allignment-box {
  background-color: #ffc73c;
  min-width: 33.33%;
}

/* Styling for the first arrow image */
.arrow1 img {
  transform: rotate(-27deg);
  height: 15vh;
  margin-left: 15px;
  margin-top: -10px;
}

.arrow-third-box img {
  height: 20vh;
  transform: rotate(-0deg);
  margin-left: -15px;
  margin-top: 15px;
  padding-top: -150px;
}

/* Right alignment for fourth info box */
.forth-info-box {
  display: flex;
  justify-content: right;
}

.ancillary-image-container {
  background-color: #ffc73c;
  min-width: 64%;
  display: flex;
  justify-content: right;
}

.second-white-description {
  margin-top: 50px;
  margin-left: -25%;
}

/* Styling for first and fourth option images */
.first-part-option-image {
  background-color: #ffc73c;
  min-width: 36%;
  display: flex;
}

.first-first-part-option-image {
  justify-content: left;
  align-items: flex-start;
}
.first-first-part-option-image img {
  width: 100%;
}

.forth-first-part-option-image {
  justify-content: left;
  align-items: flex-end;
}
.forth-first-part-option-image img {
  width: 100%;
}

/* Hide certain boxes on mobile */
.forth-hidden-box-mobile {
  display: none;
}
.first-hidden-box-mobile {
  display: none;
}

/* Styling for second arrow image */
.second-arrow img {
  height: 20vh;
}

/* Media queries for responsiveness */
@media (max-width: 320px) {
  .forth-first-part-option-image img {
    margin-left: -180% !important;
  }
}

@media (max-width: 460px) {
  .first-first-part-option-image img {
    margin-left: 0% !important;
  }

  .forth-first-part-option-image {
    display: flex;
    align-items: flex-end;
  }
  .forth-first-part-option-image img {
    transform: rotate(40deg);
    width: 15vh;
    margin-left: -80%;
  }
}

@media (max-width: 576px) {
  /* Hide empty boxes and adjust arrow position on small screens */
  .section3 .empty-boxes-options {
    display: none;
  }
  .section3 .second-arrow img {
    transform: rotate(-27deg);
    margin-top: -110pt;
    margin-left: -25pt;
  }

  /* Display hidden boxes on small screens */
  .first-hidden-box-mobile {
    display: flex;
  }
  .forth-hidden-box-mobile {
    display: flex;
  }

  /* Adjust image sizes and positions */
  .forth-first-part-option-image {
    min-width: 20%;
    display: flex;
    align-items: center;
  }
  .first-first-part-option-image {
    min-width: 20%;
    display: flex;
    align-items: flex-start;
  }
  .first-first-part-option-image img {
    margin-left: 50%;
    height: 15vh;
    transform: rotate(0);
    width: 150%;
    margin-left: 70%;
  }
  .forth-first-part-option-image {
    display: flex;
    align-items: flex-end;
  }
  .forth-first-part-option-image img {
    transform: rotate(47deg);
    width: 15vh;
    margin-left: -150%;
    margin-bottom: 10%;
  }
  .ancillary-image-container {
    min-width: 100%;
  }
  .airconditioning-image-container {
    min-width: 100%;
  }

  .second-part-option-image {
    justify-content: center;
  }

  .second-white-description {
    margin-top: 0% !important;
    margin-left: 0%;
  }

  .wrapper-for-para-text {
    font-size: 10pt;
    line-height: 10pt;
  }

  /* Prevent horizontal scrolling */
  html,
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 800px) and (min-width: 576px) {
  .second-arrow img {
    margin-left: -10% !important;
  }
}

@media (max-width: 1138px) and (min-width: 576px) {
  /* Adjustments for medium screens */
  .section3 .options-boxes .options-yellow-black {
    min-width: 50%;
  }
  .section3 .second-white-description {
    margin-top: 50px;
    margin-left: 0%;
  }
  .section3 .ancillary-image-container {
    justify-content: center;
  }
  .first-hidden-box-mobile {
    display: flex;
  }
  .forth-hidden-box-mobile {
    display: flex;
  }
  .forth-first-part-option-image img {
    transform: rotate(45deg);
    margin-left: -50%;
    height: 100pt;
  }
  .second-part-option-image {
    justify-content: center;
  }

  .first-first-part-option-image img {
    margin-left: 40%;
    transform: rotate(30deg);
    height: 120pt;
  }

  .second-arrow img {
    margin-top: -100%;
    transform: rotate(-15deg);
    height: 150pt;
    margin-left: -20%;
  }
  .arrow-third-box img {
    height: 150pt;
  }

  .wrapper-for-para-text {
    font-size: 10pt;
    line-height: 10pt;
  }

  html,
  body {
    overflow-x: hidden;
  }
}
