.homeaskanything_sec {
  padding: 50px 0;
  /* Custom Accordion Styling */
  /* Hide the default Bootstrap arrow on the right */
  /* Create the Custom Plus Icon */
  /* Rotate icon when accordion is open (Active State) */
}
@media (min-width: 992px) {
  .homeaskanything_sec {
    padding: 90px 0;
  }
}
@media (min-width: 1600px) {
  .homeaskanything_sec {
    padding: 150px 0;
  }
}
.homeaskanything_sec .title-primary {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .homeaskanything_sec .title-primary {
    margin-bottom: 40px;
  }
}
@media (min-width: 1600px) {
  .homeaskanything_sec .title-primary {
    margin-bottom: 70px;
  }
}
@media (min-width: 768px) {
  .homeaskanything_sec .row {
    --bs-gutter-x: 50px;
  }
}
.homeaskanything_sec .custom-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  /* Light grey line separator */
  background: transparent;
  margin-bottom: 10px;
  border-radius: 0;
}
.homeaskanything_sec .custom-accordion .accordion-button {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  /* Remove default blue focus glow */
  padding: 20px 0;
  /* Vertical spacing */
  color: #2c3e50;
  /* Dark text color */
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  /* Align content to left */
  padding-left: 16px;
  font-size: 16px;
}
@media (min-width: 992px) {
  .homeaskanything_sec .custom-accordion .accordion-button {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .homeaskanything_sec .custom-accordion .accordion-button {
    font-size: 24px;
  }
}
.homeaskanything_sec .custom-accordion .accordion-button::after {
  display: none;
}
.homeaskanything_sec .icon-plus {
  min-width: 18px;
  height: 18px;
  position: relative;
  margin-right: 23px;
}
@media (min-width: 1200px) {
  .homeaskanything_sec .icon-plus {
    min-width: 21px;
    height: 21px;
  }
}
.homeaskanything_sec .icon-plus::after, .homeaskanything_sec .icon-plus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #496179;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.homeaskanything_sec .icon-plus::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.homeaskanything_sec .custom-accordion .accordion-button:not(.collapsed) .icon-plus::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.homeaskanything_sec .custom-accordion .accordion-button:not(.collapsed) {
  color: #1BADDD;
  /* Optional: Highlight text when open */
}
.homeaskanything_sec .custom-accordion .accordion-button:not(.collapsed) .icon-plus::before, .homeaskanything_sec .custom-accordion .accordion-button:not(.collapsed) .icon-plus::after {
  background-color: #1BADDD;
}
.homeaskanything_sec .accordion-body {
  padding-left: 60px;
  /* Indent answer to align with text */
  padding-top: 0;
  padding-bottom: 20px;
  color: #666;
}