/* Custom CSS - Generated on 09/20/2026 16:55:08 */


.accordion-wrap {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.accordion-wrap h3 {
  margin: 0;
  padding: 1.25rem 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  user-select: none;
}

.accordion-wrap h3:hover {
  background: #faf8f5;
}

.accordion-wrap h3::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: #aaa;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-wrap h3.open {
  background: #faf8f5;
}

.accordion-wrap h3.open::after {
  content: '\2212';
}

.accordion-content {
  display: none;
  padding: 0.75rem 1.25rem 1rem;
  background: #efefef;
  border-bottom: 1px solid #eee;
  line-height: 1.7;
}

.accordion-wrap h3 {
  margin: 0 !important;
  padding: 1.25rem 1.25rem !important;
  line-height: 1.2 !important;
}