#FAQsContainer {
    /* border: 3px solid #000000; */
    background-color: #ffffff;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: auto;
    /*color: rgb(2, 140, 18);*/
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 25px;
    font-family: "Montserrat", sans-serif;
  }
  
  /* Flexbox for the dividers */
  .FAQsBox {
    /* border: 3px solid rgb(172, 1, 1); */
    margin: 0% auto; 
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    padding: 25px 0 25px 0; 
  }
  
  /* Style for each divider */
  #boxFAQsImage {
    /* border: 3px solid rgb(0, 255, 30); */
    /*border-radius: 20px;*/
    background-color: #ffffff;
    /*color: aliceblue;*/
    flex: 1 1 30%; /* Adjust width to fit within container */
    max-width: 400px;
    padding: 10px;
  }
  
  /* Image styling */
  .FAQsImage {
    /* border: 3px solid rgb(2, 127, 56); */
    width: 170px;
    height: auto;
    /*margin: 0 10px 20px 10px;*/
    /*width: 100%;*/
    /* border-radius: 25px; */
    /*ight: auto;*/
    /* box-shadow: 2px 2px 5px rgba(0,0,0,0.2); */
  }

  #FAQsDescription {
    /* border: 3px solid rgb(0, 204, 255); */
    color: #000000;
    /* border-radius: 20px; */
    /* background-color: #729e35; */
    /*color: aliceblue;*/
    flex: 1 1 30%; /* Adjust width to fit within container */
    max-width: 100%; /* Prevents them from getting too wide */
    min-width: 325px; /* Prevents them from getting too narrow */
    padding: 5px 25px 25px 20px; /* Added padding to the top */
    text-align:left;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .insideOurServices {
      flex-direction: column; /* Stack dividers vertically on smaller screens */
      align-items: center;
    }
  
    #boxOurServices {
      width: 90%; /* Makes them take full width */
      max-width: 500px;
    }
  }

  #FAQsPhotoText {
    /* border: 3px solid rgb(0, 204, 255); */
    margin: 0 auto;
    max-width: 300px;
    font-weight: 600;
    /* font-size: 18px; */
    /* color: #49994c; */
    padding-top: 10px;
    /* font-style: italic; */
    text-align: left;
  }
  
  #FAQsTextBox {
    /* border: 3px solid rgb(185, 3, 3); */
    width: 150px;
    margin: 0 auto;
    background-color: #75ab40;
    text-align: center;
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    /* border-radius: 5px; */
    padding: 10px;
    text-shadow: none;
    /*transform: scaleX(0.9); 
    font-stretch: 75%;*/
    /*font-size: clamp(1.5rem, 3vw, 2.5rem);*/
    /*font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;*/
  }
  
  .thinerTextFAQs {
    font-weight: 400;
    font-size: 15px;
  }

  .mediumTextFAQs {
    font-weight: 600;
    font-size: 25px;
  }

  .mediumTextFAQsh2 {
    font-weight: 600;
    font-size: 20px;
  }

  .FAQsItem {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #75ab40;
    /* border-bottom: 2px dashed #2db169; */
  }
  
  .FAQsQuestion {
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    position: relative;
  }
  
  .FAQsAnswer {
    display: none;
    padding-top: 5px;
    font-size: 15px;
    font-weight: 600;
    color: #515151;
    line-height: 1.4;
  }
  
  .FAQsQuestion::after {
    content: '▶'; /* Right arrow (closed) */
    position: absolute;
    right: 10px;
    color: #689639;
    font-weight: bold;
    transition: transform 0.3s ease;
  }
  
  .FAQsQuestion.active::after {
    transform: rotate(90deg); /* Turns arrow down */
  }

  /* .lineUnderTextFAQs {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 550;

  }

  .lineUnderTextFAQs::after{
    content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: #23a262; rgb(0, 0, 0)rgb(19, 164, 55)
  } */

  .boldTextFAQs {
    font-weight: 900;
    font-size: 28px;
    color: #1e2c6d;
  }