/* FAQ Section Styles */
.faq-section { max-width: 900px; margin: 80px auto 80px; padding: 0 25px; }
.faq-title { text-align: center; margin-bottom: 40px; }
.faq-title h2 { font-family: 'Playfair Display', 'Cormorant Garamond', serif; font-size: 2.2rem; color: #161616; margin-bottom: 10px; }
.faq-item { background: #ffffff; border: 1px solid rgba(234, 221, 205, 0.4); margin-bottom: 15px; border-radius: 4px; overflow: hidden; }
.faq-question { padding: 20px; font-weight: 600; font-size: 1.05rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; color: #333333; font-family: 'Montserrat', sans-serif; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: #666666; font-size: 0.95rem; font-family: 'Montserrat', sans-serif; }
.faq-item.active .faq-answer { max-height: 500px; padding: 0 20px 20px 20px; border-top: 1px solid #f1f1f1; }
.faq-toggle { font-size: 1.2rem; color: #c5a880; transition: transform 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
