/* ===============================
  FAQ Section Styling
=================================*/
.faq-section {
  background: #f4f7fb;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

/* Section Heading */
.faq-section h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #0d6efd;
  text-align: center;
}

.faq-section p {
  color: #6c757d;
  margin-bottom: 40px;
  text-align: center;
}

/* FAQ Container (two column layout) */
.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Column (Accordion / Questions) */
.faq-left {
  flex: 1;
  min-width: 50%;
}

/* Accordion Item */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  background: #fff;
}

/* Accordion Button */
.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  background: #fff;
  color: #333;
  padding: 15px 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.3s ease;
}

.accordion-button:hover {
  background: #f1f5ff;
}

/* Icon Styling */
.accordion-button .icon {
  font-size: 20px;
  color: #0d6efd;
  transition: transform 0.3s ease;
}

/* जब accordion-item active हो तो आइकन को घुमाएं */
.accordion-item.active .icon {
  transform: rotate(180deg);
}

/* Accordion Answer */
.accordion-body {
  background: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 15px 20px;
  border-left: 4px solid #0d6efd;
  display: none; /* डिफ़ॉल्ट रूप से उत्तर को छिपाता है */
}

/* जब accordion-item active हो तो उत्तर दिखाता है */
.accordion-item.active .accordion-body {
  display: block;
}

/* Right Column (Image Section) */
.faq-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.faq-right img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* ===============================
  Responsive Design
=================================*/
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
  }
  .faq-left, .faq-right {
    flex: 1 1 100%;
  }
  .faq-right img {
    max-width: 100%;
    margin-top: 20px;
  }
}