/* style/faq.css */
.page-faq {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Text color for general content */
  background-color: #000000; /* Main background color */
}

.page-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-faq-hero-section {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-faq-hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-faq-hero-description {
  font-size: 1.2em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-faq-hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-faq-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-faq-btn-primary {
  background-color: #FFD700;
  color: #000000;
}

.page-faq-btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-faq-btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-faq-btn-secondary:hover {
  background-color: #FFD700;
  color: #000000;
  transform: translateY(-2px);
}

.page-faq-btn-link {
  background-color: transparent;
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-faq-btn-link:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-faq-section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
}

.page-faq-section-intro {
  font-size: 1.1em;
  color: #e0e0e0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-faq-categories-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-faq-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-faq-category-card {
  background-color: #000000;
  border: 1px solid #333333;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-faq-category-card:hover {
  transform: translateY(-5px);
  border-color: #FFD700;
}

.page-faq-category-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(1) sepia(1) saturate(5) hue-rotate(30deg) brightness(1.2); /* Adjust for golden tint */
}

.page-faq-category-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-faq-category-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-faq-category-title a:hover {
  text-decoration: underline;
}

.page-faq-category-description {
  color: #cccccc;
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-faq-general-section {
  padding: 60px 0 80px 0;
  background-color: #000000;
}

.page-faq-accordion {
  margin-top: 40px;
}

.page-faq-accordion-item {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-faq-accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.3em;
  color: #FFD700;
  background-color: #1a1a1a;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-faq-accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-faq-accordion-header.active {
  background-color: #333333;
  color: #ffffff;
  border-bottom-color: #FFD700;
}

.page-faq-accordion-header.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-faq-accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #0a0a0a;
  color: #cccccc;
}

.page-faq-accordion-content.active {
  max-height: 500px; /* Adjust as needed for content length */
  padding: 20px 25px;
}

.page-faq-accordion-content p {
  margin-bottom: 15px;
  color: #cccccc;
}

.page-faq-accordion-content p:last-child {
  margin-bottom: 0;
}

.page-faq-accordion-content a {
  color: #FFD700;
  text-decoration: none;
}

.page-faq-accordion-content a:hover {
  text-decoration: underline;
}

.page-faq-cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #333333;
}

.page-faq-cta-bottom p {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-faq-hero-title {
    font-size: 2.8em;
  }
  .page-faq-section-title {
    font-size: 2em;
  }
  .page-faq-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-faq-hero-section {
    padding: 60px 0;
  }
  .page-faq-hero-title {
    font-size: 2.2em;
  }
  .page-faq-hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-faq-hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-faq-btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-faq-section-title {
    font-size: 1.8em;
  }
  .page-faq-section-intro {
    font-size: 0.95em;
  }
  .page-faq-category-card {
    padding: 25px;
  }
  .page-faq-category-title {
    font-size: 1.3em;
  }
  .page-faq-accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-faq-accordion-content {
    padding: 15px 20px;
  }
  .page-faq-cta-bottom p {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-faq-hero-title {
    font-size: 1.8em;
  }
  .page-faq-hero-section {
    padding: 40px 0;
  }
  .page-faq-btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-faq-section-title {
    font-size: 1.5em;
  }
  .page-faq-category-card {
    padding: 20px;
  }
  .page-faq-category-icon {
    width: 50px;
    height: 50px;
  }
  .page-faq-accordion-header {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-faq-accordion-content {
    padding: 12px 15px;
  }
}