Hi patvandenbosche
You an easily customize these by using Inspect Element in your web browser, just right click to the element you want to customize style, then you will see how that element is style and which file the style is declared, see this screenshot:
Let take the module 'Why is the History of....' as sample, when you right click on the 'container-inner' element, you will see how it's styled:
.acm-features.style-3 .acm-feature-intro .container-inner {
position: relative;
padding: 72px 72px 180px 72px;
max-width: 972px;
}
to reduce the padding, you can simply override the padding property to:
.acm-features.style-3 .acm-feature-intro .container-inner {
padding: 72px 72px 80px 72px !important;
}
and put this override into the file: /templates/ja_resort/css/custom.css