.about_us {
  margin-top: 10px;
  min-height: 400px;
  background-image: url("../../image/how_it_work_2.png");
  background-size: cover;
  background-position: center;
  width: 97%;
  background-repeat: no-repeat;
  border-radius: 30px;
}

.about_us .card-section {
  padding: 0px 0px;
}

.about_us .card {
  height: 400px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 30px;
}

.about_us .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 400px;
}

.about_us .card .card-body .heading {
  color: #ffffff;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin: 0px;
}

.about_us .card .card-body .sub_heading {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

.about_us_info_section {
  margin-top: 1vw;
  margin-bottom: 2vw;
}

.about_us_info_section .about_us_context .heading {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-light-green);
  text-align: left;
  margin: 0px;
}

.about_us_info_section .about_us_context .sub_heading {
  font-size: 28px;
  font-weight: 400;
  color: var(--teal-dark);
  text-align: left;
  line-height: 40px;
  margin: 0px;
}

.about_us_info_section .about_us_context .sub_heading span {
  font-weight: 700;
}

.about_us_info_section .description {
  margin-top: 16px;
  font-size: 16px;
  color: var(--deep-black);
  text-align: justify;
}

.about_us_info_section .description span {
  font-weight: 700;
}

.about_us_info_section .image_section img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.about_us_info_section .image_section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.about_us_info_section .consultation_btn_div {
  background-color: var(--purple-mid);
  width: fit-content;
  padding: 10px 20px;
  border-radius: 40px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.about_us_info_section .consultation_btn_div a {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Media Queries for Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .about_us .card .card-body .heading {
    font-size: 42px;
  }
  
  .about_us .card .card-body .sub_heading {
    font-size: 18px;
  }
  
  .about_us_info_section .about_us_context .heading {
    font-size: 22px;
  }
  
  .about_us_info_section .about_us_context .sub_heading {
    font-size: 26px;
    line-height: 35px;
  }
  
  .about_us_info_section .description {
    font-size: 15px;
  }
  
  .about_us_info_section .consultation_btn_div a {
    font-size: 16px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .about_us {
    width: 95%;
    min-height: 350px;
  }
  
  .about_us .card {
    height: 350px;
  }
  
  .about_us .card-body {
    height: 350px;
  }
  
  .about_us .card .card-body .heading {
    font-size: 36px;
  }
  
  .about_us .card .card-body .sub_heading {
    font-size: 16px;
  }
  
  .about_us_info_section .about_us_context .heading {
    font-size: 20px;
  }
  
  .about_us_info_section .about_us_context .sub_heading {
    font-size: 24px;
    line-height: 30px;
  }
  
  .about_us_info_section .description {
    font-size: 14px;
  }
  
  .about_us_info_section .consultation_btn_div {
    margin: 0 auto;
    margin-top: 20px;
  }
  
  .about_us_info_section .consultation_btn_div a {
    font-size: 16px;
  }
}

/* Large mobile devices */
@media (max-width: 768px) {
  .about_us {
    width: 97%;
    min-height: 300px;
    border-radius: 20px;
  }
  
  .about_us .card {
    height: 300px;
    border-radius: 20px;
  }
  
  .about_us .card-body {
    height: 300px;
    padding: 20px;
  }
  
  .about_us .card .card-body .heading {
    font-size: 32px;
  }
  
  .about_us .card .card-body .sub_heading {
    font-size: 16px;
  }
  
  .about_us_info_section {
    margin-top: 2vw;
    margin-bottom: 3vw;
  }
  
  .about_us_info_section .about_us_context .heading {
    font-size: 20px;
    text-align: center;
  }
  
  .about_us_info_section .about_us_context .sub_heading {
    font-size: 22px;
    line-height: 25px;
    text-align: center;
  }
  
  .about_us_info_section .description {
    font-size: 14px;
    margin-top: 16px;
  }
  
  .about_us_info_section .consultation_btn_div {
    margin: 20px auto 0;
    padding: 12px 24px;
  }
  
  .about_us_info_section .consultation_btn_div a {
    font-size: 16px;
  }
  
  .about_us_info_section .image_section {
    margin-top: 20px;
  }
  
  .about_us_info_section .image_section img {
    border-radius: 15px;
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  .about_us {
    margin-top: 5px;
    min-height: 250px;
    border-radius: 15px;
  }
  
  .about_us .card {
    height: 250px;
    border-radius: 15px;
  }
  
  .about_us .card-body {
    height: 250px;
    padding: 15px;
  }
  
  .about_us .card .card-body .heading {
    font-size: 28px;
  }
  
  .about_us .card .card-body .sub_heading {
    font-size: 14px;
  }
  
  .about_us_info_section .about_us_context .heading {
    font-size: 18px;
  }
  
  .about_us_info_section .about_us_context .sub_heading {
    font-size: 20px;
    line-height: 22px;
  }
  
  .about_us_info_section .description {
    font-size: 13px;
  }
  
  .about_us_info_section .consultation_btn_div a {
    font-size: 14px;
    gap: 6px;
  }
  
  .about_us_info_section .image_section img {
    border-radius: 10px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .about_us .card .card-body .heading {
    font-size: 24px;
  }
  
  .about_us .card .card-body .sub_heading {
    font-size: 13px;
  }
  
  .about_us_info_section .about_us_context .heading {
    font-size: 16px;
  }
  
  .about_us_info_section .about_us_context .sub_heading {
    font-size: 18px;
    line-height: 20px;
  }
  
  .about_us_info_section .description {
    font-size: 13px;
  }
  
  .about_us_info_section .consultation_btn_div {
    padding: 10px 20px;
  }
  
  .about_us_info_section .consultation_btn_div a {
    font-size: 13px;
  }
}
