/* FAQ Page */
.page-header {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-section {
  background: #f8f2e4;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(139,69,19,0.08);
}

.faq-section h2 {
  color: var(--color-primary);
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.5em;
  border-bottom: 2px solid #e8d5c4;
  padding-bottom: 10px;
}

/* FAQ Items */
.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(139,69,19,0.05);
  overflow: hidden;
  border: 1px solid #e8d5c4;
  transition: all 0.3s ease;
}

.faq-question {
  padding: 20px;
  background: linear-gradient(135deg, #f4e4d4 0%, #f8f2e4 100%);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: background 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover {
  background: linear-gradient(135deg, #e8d5c4 0%, #f4e4d4 100%);
}

.faq-icon {
  font-size: 1.5em;
  flex-shrink: 0;
}

.faq-question h3 {
  color: var(--color-primary);
  margin: 0;
  font-size: 1.1em;
  flex: 1;
}

.faq-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

/* FAQ Answers */
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background: white;
}

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

.faq-answer p {
  color: var(--color-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.faq-list li {
  padding: 8px 0;
  color: var(--color-secondary);
  border-bottom: 1px solid #f4e4d4;
}

.faq-list li:last-child {
  border-bottom: none;
}

.faq-note {
  background: #fdebd3;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid var(--color-accent);
  margin-top: 15px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(139,69,19,0.05);
}

.step-number {
  background: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--color-primary);
  margin: 0 0 8px 0;
  font-size: 1.1em;
}

.step-content p {
  color: var(--color-secondary);
  margin: 0;
  line-height: 1.5;
}

/* FAQ CTA */
.faq-cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-highlight) 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 4px 20px rgba(139,69,19,0.1);
}

.cta-content h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.4em;
}

.cta-content p {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 1.1em;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .link-button {
  min-width: 200px;
  margin: 0;
}

/* Content Links */
.faq-answer a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive FAQ */
@media (max-width: 680px) {
  .faq-section {
    padding: 18px 14px;
  }
  
  .faq-question {
    padding: 14px;
  }
  
  .faq-answer {
    padding: 0 14px;
  }
  
  .faq-item.active .faq-answer {
    padding: 14px;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  
  .faq-cta {
    padding: 26px 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .link-button {
    width: 100%;
    max-width: 300px;
  }
}
