/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 20px 60px;
  margin-top: 20px;
}

.breadcrumb a {
  font-size: 14px;
  font-weight: 400;
  color: #313131;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #AF936E;
}

.breadcrumb span {
  font-size: 14px;
  font-weight: 400;
  color: #313131;
}

/* Page Title */
.page-title-section {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.page-title-section .section-title-box {
  width: 241px;
  height: 60px;
  background-image: url('../img/mlgipcc4O7FbyG_img_11695634-1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-title-section h1 {
  font-size: 24px;
  font-weight: 500;
  color: #111111;
  text-align: center;
  letter-spacing: 0.96px;
}

/* FAQ Section */
.faq-section {
  padding: 40px 60px 80px;
}

.faq-container {
  max-width: 1123px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #D0D0D0;
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 30px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #FAFAFA;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.q-letter {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #AB7C53;
  line-height: 1;
}

.faq-q-text {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0D0D0D;
  letter-spacing: 0.56px;
  line-height: 1.5;
}

.faq-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item-active .faq-arrow {
  transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-active .faq-answer {
  max-height: 500px;
  padding: 20px 0;
}

.faq-answer-content {
  background-color: #F7F3E9;
  padding: 30px;
  margin: 0 30px;
  border-radius: 8px;
  display: flex;
  gap: 20px;
}

.faq-a-icon {
  flex-shrink: 0;
  width: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #6D6D6D;
  line-height: 1;
}

.faq-a-text {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #0D0D0D;
  line-height: 2.3;
  letter-spacing: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .breadcrumb,
  .faq-section {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 992px) {
  .breadcrumb,
  .faq-section {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .faq-question {
    gap: 20px;
    padding: 18px 20px;
  }
  
  .faq-q-text {
    font-size: 15px;
  }
  
  .faq-answer-content {
    padding: 25px;
    margin: 0 20px;
  }
  
  .faq-a-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 15px 20px;
    margin-top: 15px;
  }
  
  .breadcrumb a,
  .breadcrumb span {
    font-size: 12px;
  }
  
  .page-title-section {
    margin: 30px 0;
  }
  
  .page-title-section .section-title-box {
    width: 200px;
    height: 50px;
  }
  
  .page-title-section h1 {
    font-size: 20px;
  }
  
  .faq-section {
    padding: 30px 20px 60px;
  }
  
  .faq-question {
    gap: 15px;
    padding: 15px 15px;
  }
  
  .faq-q-icon {
    width: 16px;
  }
  
  .q-letter {
    font-size: 18px;
  }
  
  .faq-q-text {
    font-size: 14px;
    letter-spacing: 0.3px;
  }
  
  .faq-arrow {
    width: 14px;
    height: 14px;
  }
  
  .faq-answer-content {
    flex-direction: column;
    padding: 20px;
    margin: 0 15px;
    gap: 10px;
  }
  
  .faq-a-icon {
    font-size: 18px;
  }
  
  .faq-a-text {
    font-size: 14px;
    line-height: 2;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    padding: 10px 15px;
    gap: 5px;
  }
  
  .breadcrumb svg {
    width: 12px;
    height: 12px;
  }
  
  .page-title-section {
    margin: 20px 0;
  }
  
  .page-title-section .section-title-box {
    width: 180px;
    height: 45px;
  }
  
  .page-title-section h1 {
    font-size: 18px;
  }
  
  .faq-section {
    padding: 20px 15px 40px;
  }
  
  .faq-question {
    gap: 10px;
    padding: 12px 10px;
  }
  
  .faq-q-icon {
    width: 14px;
  }
  
  .q-letter {
    font-size: 16px;
  }
  
  .faq-q-text {
    font-size: 13px;
    letter-spacing: 0.2px;
  }
  
  .faq-arrow {
    width: 12px;
    height: 12px;
  }
  
  .faq-answer-content {
    padding: 15px;
    margin: 0 10px;
  }
  
  .faq-a-icon {
    font-size: 16px;
  }
  
  .faq-a-text {
    font-size: 13px;
    line-height: 1.8;
  }
}
