/* Contact Page Styles */
.text-gold {
  color: var(--accent-gold);
}

.contact-form-layout {
  display: flex;
  flex-direction: column;
}

.contact-textarea {
  resize: vertical;
}

.contact-submit-btn {
  align-self: flex-start;
  border-radius: 4px;
}

/* FAQ Section Styling */
.faq-section {
  padding: 6rem 5%;
  background: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  font-family: var(--font-heading);
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text-muted);
  line-height: 1.7;
}