.dr1043faq {
  background: linear-gradient(135deg, #f0fdf4, #ffffff);
  padding: 80px 20px;
  font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.dr1043faq::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(16,185,129,0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* ====== Section Heading ====== */
.faq-section {
  max-width: 900px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.faq-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(to right, #047857, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 6px rgba(4, 120, 87, 0.15);
}

.section-subtitle {
  color: #065f46;
  font-size: 1.05rem;
  margin-bottom: 35px;
  font-style: italic;
  opacity: 0.85;
}

/* ====== FAQ Boxes ====== */
.faq-list {
  text-align: left;
}

.faq-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(4, 120, 87, 0.08);
  margin-bottom: 18px;
  padding: 22px 24px;
  transition: all 0.35s ease;
  border-left: 5px solid #10b981;
  position: relative;
  overflow: hidden;
}

.faq-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}

.faq-title {
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  color: #065f46;
  position: relative;
  padding-right: 25px;
}

.faq-title::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  color: #10b981;
  transition: transform 0.3s ease;
}

.faq-box.active .faq-title::after {
  content: '−';
  color: #f59e0b; /* gold when active */
}

.faq-content {
  display: none;
  margin-top: 12px;
  color: #374151;
  line-height: 1.6;
  font-size: 0.97rem;
}

.faq-box.active .faq-content {
  display: block;
}

/* ====== Contact Buttons ====== */
.whatsapp-btn,
.call-btn {
  display: inline-block;
  margin: 10px 6px 0;
  padding: 9px 16px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
  background: linear-gradient(45deg, #25D366, #16a34a);
}

.whatsapp-btn:hover {
  background: linear-gradient(45deg, #16a34a, #25D366);
  transform: translateY(-2px);
}

.call-btn {
  background: linear-gradient(45deg, #f59e0b, #eab308);
}

.call-btn:hover {
  background: linear-gradient(45deg, #eab308, #f59e0b);
  transform: translateY(-2px);
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .faq-section h2 {
    font-size: 1.7rem;
  }
  .faq-box {
    padding: 18px 20px;
  }
}