/* FAQ Categories Section */
.faq-categories {
  background: white;
  padding: 60px 0;
}

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

.faq-category-card {
  background: #f5f5f7;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.category-icon i {
  font-size: 32px;
  color: #0071e3;
}

.category-content {
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.category-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1d1d1f;
}

.category-description {
  color: #515154;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.category-link {
  display: inline-flex;
  align-items: center;
  color: #0071e3;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: color 0.3s;
}

.category-link:hover {
  color: #0056b8;
}

.category-link i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.category-link:hover i {
  transform: translateX(3px);
}

/* FAQ Details Section */
.faq-details {
  background: #f5f5f7;
  padding: 60px 0;
}

.faq-accordion {
  margin-top: 30px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1d1d1f;
  font-weight: 600;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: #0071e3;
}

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

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
  color: #515154;
  line-height: 1.7;
  margin: 0;
}

/* Additional Help Section */
.additional-help {
  background: white;
  padding: 60px 0;
}

.help-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.help-option-card {
  background: #f5f5f7;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.help-option-card:hover {
  transform: translateY(-10px);
}

.help-icon {
  width: 80px;
  height: 80px;
  background: #e6f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.help-icon i {
  font-size: 32px;
  color: #0071e3;
}

.help-option-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1d1d1f;
}

.help-option-card p {
  color: #515154;
  line-height: 1.6;
  margin-bottom: 15px;
}

.help-meta {
  color: #0071e3;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .faq-question {
    padding: 20px 15px;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .help-options-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Toggle Script Effect */
.faq-item {
  transition: all 0.3s ease;
}