.sky-faq{
  --section-bg:#EED9B9;
  --card-bg:#FFF8F1;
  --accent-btn:#D53E0F;
  --primary-btn:#2C1A1D;
  --heading-color:#2C1A1D;
  --text-color:#4A2B2B;

  width:100%;
  height:900px;
  padding:90px 20px;
  background:var(--section-bg);
  font-family:'Inter', sans-serif;
  overflow:hidden;
}

.sky-faq *{
  box-sizing:border-box;
}

.sky-faq-wrap{
  max-width:980px;
  margin:0 auto;
}

.sky-faq-head{
  text-align:center;
  margin-bottom:36px;
}

.sky-faq-head span{
  display:block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--primary-btn);
}

.sky-faq-head h2{
  margin:0;
  font-family:'Cormorant Garamond', serif;
  font-size:58px;
  line-height:1;
  font-weight:800;
  color:var(--heading-color);
}

.sky-faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  overflow:visible;
}

.sky-faq-item{
  border-radius:28px;
  background:rgba(255,248,241,0.55);
  border:1px solid rgba(44,26,29,0.08);
  overflow:hidden;
  box-shadow:0 12px 30px rgba(44,26,29,0.06);
}

.sky-faq-question{
  width:100%;
  border:0;
  outline:none;
  background:transparent;
  cursor:pointer;
  padding:22px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  text-align:left;
  color:var(--heading-color);
  font-size:17px;
  font-weight:900;
}

.sky-faq-question b{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#fff;
  color:var(--primary-btn);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  line-height:1;
  flex:0 0 auto;
  transition:0.3s ease;
}

.sky-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease;
}

.sky-faq-answer p{
  margin:0;
  padding:0 26px 24px;
  max-width:820px;
  font-size:17px;
  line-height:1.7;
  font-weight:500;
  color:var(--text-color);
}

.sky-faq-item.active{
  background:var(--card-bg);
}

.sky-faq-item.active .sky-faq-answer{
  max-height:220px;
}

.sky-faq-item.active .sky-faq-question b{
  background:var(--accent-btn);
  color:#fff;
  transform:rotate(45deg);
}

@media(max-width:767px){
  .sky-faq{
    height:820px;
    padding:65px 16px;
  }

  .sky-faq-head h2{
    font-size:38px;
  }

  .sky-faq-question{
    padding:18px 18px;
    font-size:15px;
  }

  .sky-faq-question b{
    width:34px;
    height:34px;
  }

  .sky-faq-answer p{
    padding:0 18px 20px;
    font-size:14px;
  }

  .sky-faq-item.active .sky-faq-answer{
    max-height:180px;
  }
}