/* 메인이미지 영역  */ 

 /*메인이미지 영역 끝*/ 

.main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}



.section-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}




/* FAQ */
.faq-section {
  max-width: 1100px;
  width: 100%;
  margin: 60px auto;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 2px 2px 5px rgb(0, 0, 0, 0.1);
}

@media (max-width: 720px) {
  .faq-section {
    width: 100%;
    padding: 0 10px;
  }
}




  .faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin:2rem 0 1.5rem 0;
    letter-spacing: -0.03em;
  }


  .faq-item {
    margin:0 auto;
    width: 96%;
    border-bottom: 1px solid #ccc;
    padding: 0.8rem 0;
    cursor: pointer;
  }

  .faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    position: relative;
    padding-right: 1.5rem;
  }

  .faq-question::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    color: #555;
    padding-left: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: max-height 0.35s ease;
  }
  /* FAQ  여기까지*/