.faq-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* header */
.faq-container .brand {
  text-align: center;
  margin-bottom: 0.5rem;
}

.faq-container .brand h4 {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b78c6f;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.faq-container .brand h1 {
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: #3e2c23;
  font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  margin-bottom: 1.5rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: #dbb99b;
  margin: 0 auto 2.5rem auto;
}

/* faq item */
.faq-item {
  border-bottom: 1px solid #e3d5ca;
  padding: 1.4rem 0;
  transition: all 0.2s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 500;
  color: #4a3830;
  padding-right: 0.5rem;
  user-select: none;
  transition: color 0.2s;
  gap: 12px;
}

.faq-question:hover {
  color: #b78c6f;
}

.faq-question .icon {
  font-size: 1.8rem;
  font-weight: 300;
  color: #b78c6f;
  transition: transform 0.3s ease;
  display: inline-block;
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: #5f524a;
  padding-right: 1rem;
}

.faq-answer p {
  padding-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

/* active state */
.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

/* subtle footer note */
.contact-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.95rem;
  color: #8c7b6f;
  margin-bottom: 3rem;
}

.contact-note a {
  color: #b78c6f;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.contact-note a:hover {
  border-bottom-color: #b78c6f;
}

/* responsiveness */
@media (max-width: 768px) {
  .faq-container {
    padding: 0 16px;
    margin: 30px auto 0;
  }
  .faq-container .brand h1 {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .faq-container {
    padding: 0 12px;
  }
  .divider{
      margin: 0 auto 20px auto;
  }
  .faq-item{
    padding: 15px 0;
  }
  .faq-container .brand h1 {
    font-size: 1.6rem;
  }
  .faq-question {
    font-size: 14px;
  }
  .faq-answer p {
    font-size: 0.9rem;
  }
}
