/* Section Title Styling */
.section-title {
    color: #497EE6 !important; /* Blue color from the design */
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Add the divider line */
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.75rem;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #497EE6;
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
}
