/* QA Section */
.qa-section {
  padding: 80px 5%;
  background-color: #fff;
  color: #222;
  font-family: "Poppins", sans-serif;
}

.qa-heading {
  font-size: 1.3rem;
  text-align: top;
  font-weight: 500;
  margin-bottom: 50px;
  color: #222;
}

/* Grid Layout */
.qa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.qa-card {
  background: #e9e9e9;
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.qa-card:hover {
  transform: translateY(-5px);
  background: #ececec;
}

.qa-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.qa-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Button Section */
.qa-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  padding: 6px 12px;
}

.qa-btn button {
  background: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 15px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.qa-btn button:hover {
  background: #000;
}

.qa-btn i {
  font-size: 1rem;
  color: #222;
}

/* Responsive */
@media (max-width: 992px) {
  .qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .qa-grid {
    grid-template-columns: 1fr;
  }

  .qa-card {
    padding: 20px;
  }

  .qa-heading {
    font-size: 1.1rem;
  }
}
