/* IMC RC39 — reliable product FAQ accordion.
   Soft sage/green palette only; no black hover state. */

#frequently-asked-questions{
  scroll-margin-top:110px;
}

#frequently-asked-questions .imc-product-faq-list{
  display:grid;
  gap:9px;
}

#frequently-asked-questions .imc-product-faq-item{
  overflow:hidden;
  border:1px solid #d9e3ce;
  border-radius:12px;
  background:#fbfcf7;
  box-shadow:0 5px 16px rgba(77,96,63,.055);
}

#frequently-asked-questions .imc-product-faq-question{
  appearance:none;
  -webkit-appearance:none;
  width:100%;
  min-height:46px;
  margin:0;
  padding:11px 14px;
  border:0;
  outline:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  background:#f6f8ef;
  color:#405338;
  text-align:left;
  font:inherit;
  font-size:13px;
  line-height:1.35;
  font-weight:750;
  cursor:pointer;
  box-shadow:none;
  transition:background .18s ease,border-color .18s ease,color .18s ease;
}

#frequently-asked-questions .imc-product-faq-question:hover,
#frequently-asked-questions .imc-product-faq-question:focus-visible{
  background:#e8f0d8;
  color:#38502f;
}

#frequently-asked-questions .imc-product-faq-question:focus-visible{
  box-shadow:inset 0 0 0 2px #aeca76;
}

#frequently-asked-questions .imc-product-faq-question-text{
  flex:1 1 auto;
}

#frequently-asked-questions .imc-product-faq-icon{
  flex:0 0 26px;
  width:26px;
  height:26px;
  border:1px solid #c6d7a6;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#eef5df;
  color:#5e773e;
  font-size:17px;
  line-height:1;
  font-weight:700;
}

#frequently-asked-questions .imc-product-faq-item.is-open{
  border-color:#b9ce91;
  background:#fff;
}

#frequently-asked-questions .imc-product-faq-item.is-open .imc-product-faq-question{
  background:#dfeac8;
  color:#38502f;
}

#frequently-asked-questions .imc-product-faq-item.is-open .imc-product-faq-icon{
  background:#cfe3a5;
  border-color:#afc97b;
  color:#4d6632;
}

#frequently-asked-questions .imc-product-faq-answer{
  padding:12px 15px 14px;
  border-top:1px solid #e5ebdd;
  background:#fff;
  color:#5b6757;
  font-size:12.5px;
  line-height:1.65;
}

#frequently-asked-questions .imc-product-faq-answer[hidden]{
  display:none!important;
}

#frequently-asked-questions .imc-product-faq-answer p:last-child{
  margin-bottom:0;
}

@media(max-width:767px){
  #frequently-asked-questions .imc-product-faq-list{gap:7px}
  #frequently-asked-questions .imc-product-faq-question{
    min-height:44px;
    padding:10px 12px;
    font-size:12px;
  }
  #frequently-asked-questions .imc-product-faq-icon{
    flex-basis:24px;
    width:24px;
    height:24px;
    font-size:16px;
  }
  #frequently-asked-questions .imc-product-faq-answer{
    padding:11px 12px 13px;
    font-size:12px;
  }
}
