/* Font Face Definitions for FAQ */
@font-face {
  font-family: 'Madley Medium';
  src: url('../assets/fonts/MadleyMedium-Italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Sofia Pro';
  src: url('../assets/fonts/SofiaProRegular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* FAQ Section Styles */
.faq-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.faq-title {
  font-family: 'Burford', serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 50px;
}

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

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Madley Medium', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #2c3e50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.faq-chevron {
  font-size: 16px;
  color: #D93E36;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: white;
}

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

.faq-answer p {
  font-family: 'Sofia Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }
  
  .faq-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .faq-question {
    padding: 20px;
    font-size: 1.1rem;
  }
  
  .faq-answer.active {
    padding: 0 20px 20px 20px;
  }
  
  .faq-chevron {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 16px;
    font-size: 1rem;
  }
  
  .faq-answer.active {
    padding: 0 16px 16px 16px;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
} 