.ate-faq{
  width:100%;
  background:#E1D59F;
  padding:100px 20px;
  box-sizing:border-box;
}

.ate-faq *{
  box-sizing:border-box;
}

.ate-faq-wrap{
  max-width:1200px;
  width:100%;
  margin:0 auto;
}

.ate-faq-card{
  max-width:1200px;
  width:100%;
  margin:0 auto;
  background:#ffffff;
  border-radius:28px;
  padding:70px 70px;
  box-shadow:0 30px 90px rgba(0,0,0,.28);
}

.ate-faq-head{
  text-align:center;
  margin-bottom:38px;
}

.ate-faq-head span{
  display:inline-flex;
  color:#D89216;
  font-family:'Inter', sans-serif;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:12px;
}

.ate-faq-head h2{
  margin:0;
  color:#2C061F;
  font-family:'Cinzel', serif;
  font-size:46px;
  line-height:1.08;
  font-weight:900;
}

.ate-faq-list{
  max-width:760px;
  margin:0 auto;
  display:grid;
  gap:12px;
}

.ate-faq-item{
  border:1px solid rgba(44,6,31,.12);
  border-radius:8px;
  overflow:hidden;
  background:#ffffff;
}

.ate-faq-question{
  width:100%;
  border:0;
  outline:0;
  cursor:pointer;
  background:#2C061F;
  color:#ffffff;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  text-align:left;
  font-family:'Inter', sans-serif;
  font-size:15px;
  font-weight:800;
}

.ate-faq-question svg{
  width:18px;
  height:18px;
  flex:0 0 18px;
  transition:.25s ease;
}

.ate-faq-item.active .ate-faq-question{
  background:#E1D59F;
  color:#2C061F;
}

.ate-faq-item.active .ate-faq-question svg{
  transform:rotate(180deg);
}

.ate-faq-answer{
  display:none;
  padding:18px 18px 22px;
  background:#ffffff;
  border-top:1px solid rgba(44,6,31,.10);
}

.ate-faq-item.active .ate-faq-answer{
  display:block;
}

.ate-faq-answer p{
  margin:0;
  color:#1E293B;
  font-family:'Inter', sans-serif;
  font-size:15px;
  line-height:1.65;
  font-weight:500;
}

@media(max-width:768px){
  .ate-faq{
    padding:70px 16px;
  }

  .ate-faq-card{
    padding:45px 20px;
    border-radius:22px;
  }

  .ate-faq-head h2{
    font-size:32px;
  }

  .ate-faq-question{
    font-size:14px;
    padding:15px 14px;
  }

  .ate-faq-answer p{
    font-size:14px;
  }
}