.jpivf-section {
  padding: 40px 15px;
  background-color: #ffeaf0;
}

.jpivf-carousel-wrapper .carousel-inner {
  border-radius: 20px;
  overflow: hidden;
}

.jpivf-carousel-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.jpivf-carousel-wrapper .carousel-indicators [data-bs-target] {
  background-color: #7a0b33;
}

.jpivf-faq h2 {
  font-size: 2rem;
  color: #8e324a;
  margin-bottom: 2rem;
  font-weight: bold;
  text-align: center;
}

.faq-item input {
  display: none;
}

.faq-label {
  background-color: #7a0b33;
  color: #fff;
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  display: block;
  font-weight: 500;
}

.faq-label::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item input:checked + .faq-label::after {
  content: "–";
}

.faq-content {
  display: none;
  background: #f9f9f9;
  color: #333;
  padding: 12px 20px;
  margin-top: -10px;
  margin-bottom: 15px;
  border-radius: 0 0 4px 4px;
  font-size: 14px;
}

.faq-item input:checked + .faq-label + .faq-content {
  display: block;
}

@media (max-width: 768px) {
  .jpivf-carousel-wrapper {
    margin-bottom: 30px;
  }

  .jpivf-faq {
    text-align: center;
  }

  .faq-label,
  .faq-content {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

