
        body { font-family: 'Source Sans Pro', sans-serif; }
        .text-primary { color: #ec2e34; } /* green-700 */
        .bg-primary { background-color: #ec2e34; }
        .bg-primary-hover:hover { background-color: #d81016; }
        .bg-light { background-color: #fce8e9; } /* green-50 */
        .hero-bg {
            background-image: linear-gradient(rgba(240, 253, 244, 0.8), rgba(240, 253, 244, 0.8)), url('../img/hero.jpg');
            background-size: cover;
        }
        .section-title {
            position: relative;
            padding-bottom: 0.75rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ec2e34;
            border-radius: 2px;
        }
    