.faq-section {
  margin-top: 30px;
  margin-bottom: 30px;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;

  align-items: flex-start;
  justify-content: space-between;
}

.faq-left {
  flex: 1 1 40%;
  min-width: 280px;
}

.faq-left h2 {
  font-size: 30px;
  font-weight: 800;
  color: #1a1a1a;
}

.underline {
  width: 60px;
  height: 4px;
  background: #e3b841;
  margin: 12px 0 20px;
  border-radius: 3px;
}

.faq-header-title {
  font-size: 36px;
  font-weight: 700;
  color: #1b3e5c; 
  margin-bottom: 15px;
}

.faq-header-title span {
  font-weight: 900; 
  color: #1f6fa4; 
}

.faq-header-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #6c7a8a; 
  line-height: 1.6;
}
.faq-left p {
  color: #5a5a5a;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 16px;
}

.btn-fund {
  display: inline-block;
  background: linear-gradient(to right, #e3b841, #d4b300);
  color: white;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.btn-fund:hover {
  background: linear-gradient(to right, #d4b300, #e3b841);
  color: black;
}

.btn-fund span {
  margin-left: 8px;
  font-weight: 700;
}

.faq-img {
  width: 80%;
  margin-top: 10px;
  border-radius: 12px;
}

.faq-right {
  flex: 1 1 55%;
  min-width: 320px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s ease;
  border-left: 5px solid transparent;
}

.faq-item.active {
  border-left-color: #e3b841;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 500;
  
  color: #2d003f;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  text-align: left;
}

.faq-question:hover {
  background-color: #fdf9e9;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  color: #888;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fdf9e9;
  color: #333;
  font-size: 15px;
  padding: 0 20px;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 10px 0 16px;
  line-height: 1.6;
}

/* Read All Link */
.faq-readall {
  display: inline-block;
  margin-top: 20px;
  color: #e3b841;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.faq-readall span {
  margin-left: 6px;
}


@media (max-width: 991px) {
  .faq-left h2 {
    font-size: 26px;
  }

  .faq-left p {
    font-size: 15px;
  }

  .btn-fund {
    font-size: 14px;
    padding: 10px 20px;
  }

  .faq-question {
    padding: 16px;
    font-size: 15px;
  }

  .faq-question::after {
    font-size: 20px;
  }

  .faq-answer {
    padding: 0 16px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 8px 0 14px;
  }

  .faq-readall {
    font-size: 15px;
  }

  .faq-img {
    width: 100%;
    margin-top: 20px;
  }
}

/* Tablets and small laptops (768px to 990px) */
@media (max-width: 990px) {
  .faq-container {
    flex-direction: column;
    gap: 30px;
  }

  .faq-left, .faq-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .faq-left h2 {
    font-size: 24px;
    text-align: center;
  }

  .faq-left p {
    text-align: center;
  }

  .faq-img {
    display: block;
    margin: 20px auto 0;
    max-width: 100%;
  }

  .faq-readall {
    text-align: center;
    display: block;
  }
}

/* Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
  .faq-container {
    padding: 0 15px;
  }

  .faq-left h2 {
    font-size: 22px;
  }

  .faq-left p {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn-fund {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
  }

  .faq-question {
    padding: 14px;
    font-size: 14px;
  }

  .faq-question::after {
    font-size: 18px;
    right: 15px;
  }

  .faq-answer {
    padding: 0 14px;
    font-size: 13.5px;
  }

  .faq-answer p {
    padding: 6px 0 12px;
  }

  .faq-img {
    width: 100%;
    margin-top: 15px;
  }

  .faq-readall {
    font-size: 14px;
    text-align: center;
  }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .faq-left h2 {
    font-size: 20px;
  }

  .faq-left p {
    font-size: 13px;
  }

  .faq-question {
    font-size: 13px;
  }

  .faq-answer {
    font-size: 13px;
  }

  .faq-readall {
    font-size: 13px;
  }

  .btn-fund {
    font-size: 13px;
    padding: 8px 16px;
  }
}
