.dr1044faq {
  background: linear-gradient(180deg, #bbdefb, #e3f2fd);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #0d47a1;
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2.4rem;
  color: #01579b;
  margin-bottom: 50px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(13, 71, 161, 0.15);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(13, 71, 161, 0.25);
}

.faq-question {
  width: 100%;
  background: linear-gradient(90deg, #42a5f5, #1e88e5);
  color: #fff;
  border: none;
  outline: none;
  text-align: left;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq-question::after {
  content: "✈️";
  position: absolute;
  right: 20px;
  top: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(90deg);
}

.faq-question:hover {
  background: linear-gradient(90deg, #64b5f6, #2196f3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  color: #0d47a1;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px;
}

/* Fade-in animation */
.fadein-faq {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fadein-faq.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 16px;
  }
  .faq-answer {
    font-size: 0.95rem;
  }
}