.elementor-11705 .elementor-element.elementor-element-62c47b2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e609fb1 */.accordion {
  width: 100%; /* Take full available width */
  max-width: 1000px; /* Optional: limit on very large screens */
  margin: 20px auto; /* Center horizontally */
}

.accordion-item {
  border-bottom: 1px solid #ccc;
}

.accordion-item input {
  display: none;
}

.accordion-title {
  display: block;
  padding: 12px 15px; /* reduced from 20px */
  background: var(--wp--preset--color--light, #fff);
  cursor: pointer;
  font-weight: bold;
  color: #006043;
  transition: background 0.3s ease;
}

.accordion-title:hover {
  background: var(--wp--preset--color--lighter, #eaeaea);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 15px; /* reduced from 20px */
  background: var(--wp--preset--color--base, #fff);
}

.accordion-item input:checked ~ .accordion-content {
  max-height: 5000px;
  padding: 12px 15px; /* reduced from 20px */
}/* End custom CSS */