/* Section title with blue background */
.section-title-blue {
    background-color: var(--color-primary-dark); /* Dark blue from brand colors */
    color: #fff;
    padding: 2rem 0;
    margin-bottom: 3rem;
    text-align: center;
    width: 100%;
}

.section-title-blue h2 {
    margin: 0 !important;
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff !important;
    
}



/* Media query for smaller screens */
@media (max-width: 768px) {
    .section-title-blue h2 {
        font-size: 2rem;
    }
}
