/* Della Junior FAQ Section Styling */

.faq-section {
  background-color: #f8faff;
  padding: 80px 0;
}

.faq-section .tp-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a3b5a;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.faq-section .tp-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #80CDFB;
  border-radius: 2px;
}

/* FAQ Item Styling */
.faq-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.faq-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-header h5 {
  font-size: 17px;
  font-weight: 600;
  color: #1a3b5a;
  margin-bottom: 0;
  padding-right: 30px;
  transition: all 0.3s ease;
  font-family: 'Urbanist', sans-serif;
}

.faq-header.collapsed h5 {
  color: #3a5570;
}

/* Custom plus/minus button */
.faq-btn {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.faq-btn::before,
.faq-btn::after {
  content: '';
  position: absolute;
  background-color: #FFD97E;
  transition: all 0.3s ease;
}

.faq-btn::before {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq-btn::after {
  width: 2px;
  height: 20px;
  left: 9px;
  top: 0;
}

.faq-header:not(.collapsed) .faq-btn::after {
  opacity: 0;
  transform: rotate(90deg);
}

/* FAQ Body Styling */
.faq-body {
  padding: 20px 25px;
  background-color: #fff;
}

.faq-body p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0;
}
