
/* Page header styles */
.page-header {
  padding: 200px 0 60px;
  background: linear-gradient(to bottom, #000, #111827);
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-description {
  font-size: 20px;
  color: #d1d5db;
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ section styles */
.faq-section {
  background-color: #000;
}

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

/* Tab navigation */
.tab-list {
  display: flex;
  background: linear-gradient(to right, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.5), rgba(17, 24, 39, 0.9));
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.5);
  margin-bottom: 32px;
}

.tab-button {
  flex: 1;
  background: none;
  border: none;
  padding: 16px;
  cursor: pointer;
  color: #d1d5db;
  font-weight: 500;
  transition: all 0.3s;
}

.tab-button:hover {
  color: #22d3ee;
}

.tab-button.active {
  color: #22d3ee;
  background: linear-gradient(to bottom, rgba(31, 41, 55, 0.8), rgba(17, 24, 39, 0.8));
}

/* Tab content */
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.tab-title {
  font-size: 24px;
  font-weight: 600;
  color: #22d3ee;
  margin-bottom: 24px;
}

/* Accordion styles */
.accordion {
  border: 1px solid #374151;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.3);
}

.accordion-item {
  border-bottom: 1px solid #374151;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: none;
  border: none;
  color: #f3f4f6;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: rgba(55, 65, 81, 0.3);
}

.accordion-header .accordion-icon {
  transition: transform 0.3s;
  color: #22d3ee;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: rgba(31, 41, 55, 0.3);
}

.accordion-content p {
  padding: 20px;
  color: #d1d5db;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-title {
    font-size: 36px;
  }
  
  .tab-button {
    padding: 12px;
    font-size: 14px;
  }
}
