.faq-section {
  color: white;
  padding: 0;
}

.faq-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 0;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.faq-container {
  width: 100%;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.2s ease;
}

.faq-question:hover {
  opacity: 0.8;
}

.faq-question:focus {
  outline: none;
  opacity: 0.8;
}

.faq-icon {
  font-family: monospace;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.2s ease;
  min-width: 20px;
  text-align: center;
}

.faq-icon.open {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-answer p {
  margin: 0;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 1rem 0;
  }

  .faq-answer p {
    font-size: 1rem;
  }

  .faq-answer.open {
    max-height: 350px;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
} 