.faq-title h1 {
  text-align: center;
  margin: 0;
  margin-top: 10px;
  font-size: 36px;
  font-family: 'Segoe UI', sans-serif;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
  font-family: 'Segoe UI', sans-serif;
  background-color: transparent;
}

.faq-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq-card:hover {
  transform: translateY(-5px);
}

.faq-card h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.faq-card p {
  font-size: 16px;
  margin-bottom: 10px;
  color: #555;
  line-height: 1.5;
}
