You have margins set in a bunch of different places. The huge amount of space you’re seeing is from the other areas in the CSS where it is inheriting another margin-bottom
value. Your styles are a little all over the place. I see references to .accordion-title
on lines 1903 and 2732 of your style.css
file. You’ll notice the various margins set around those areas. Also look for margin-bottom
set on .accordion-title.open
.
As a test, try adding this (temporarily) to the very bottom of your stylesheet:
.accordion-title {
margin-bottom: 0 !important;
}
.accordion-title.open {
margin-bottom: 0 !important;
}