.faq-section{
}
.faq-wrapper{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:clamp(32px, 4vw, 56px);
  align-items:stretch;
}

.faq-content{
  order:2;
  margin:0;
}

.faq-image{
  order:1;
  min-height:clamp(260px,34vw,420px);
  align-self:stretch;
  overflow:hidden;
  border-radius:24px;
  background:#f3f3f3;
  border:1px solid #e5e5e5;
}

.faq-content h2{
  margin-top:0;
}

.faq-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:10px;
}

.faq{
  margin-top:40px;
}

.faq-section h2{
  text-align:center;
}

.faq details{
  background:#fff;
  border-radius:14px;
  margin-bottom:18px;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  border:1px solid #eee;
  padding:20px 24px;
}

.faq summary{
  font-weight:600;
  font-size:17px;
  list-style:none;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
}

.faq summary::-webkit-details-marker{
  display:none;
}

.faq summary::after{
  content:"›";
  font-size:20px;
  transform:rotate(90deg);
  transition:transform 0.3s ease;
}

.faq details[open] summary::after{
  transform:rotate(-90deg);
}

.faq p{
  margin-top:15px;
  font-size:15px;
  line-height:1.6;
  color:#444;
}

.faq-cta-section{
  padding:0 var(--container-padding) var(--section-space) var(--container-padding);
  background:white;
  box-sizing:border-box;
}

.faq-cta-wrap{
  max-width:var(--container-max);
  margin:0 auto;
  display:flex;
  justify-content:center;
}

.faq-cta-wrap .btn{
  width:320px;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-sizing:border-box;
}

@media (max-width:1280px){
  .faq-wrapper{
    gap:28px;
  }

  .faq-cta-wrap .btn{
    width:100%;
    max-width:320px;
  }
}

@media (max-width:1100px){
  .faq-wrapper{
    grid-template-columns:1fr;
    gap:32px;
  }

  .faq-image{
    min-height:220px;
  }
}

@media (max-width:680px){
  .faq details{
    padding:16px 18px;
  }

  .faq summary{
    font-size:14px;
    line-height:1.2;
    align-items:center;
    gap:10px;
  }

  .faq summary::after{
    font-size:18px;
    flex:0 0 auto;
  }

  .faq p{
    font-size:14px;
    line-height:1.5;
  }
}