/* FAQ Cards Styling */
.faq-item {
  margin-bottom: 30px;
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-item h2 {
  color: #0099FF;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-item p {
  color: #666;
  margin-bottom: 0;
}

.faq-item small {
  background: #0099FF;
  color: white;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
  display: inline-block;
}
