
        body { font-family: 'Inter', sans-serif; }
        .brand-text { color: #ff4e01; } /* Indigo-600 */
        .brand-bg { background-color: #ff4e01; }
        .brand-bg-hover:hover { background-color: #ed6226; }
        .section-title::after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            margin-top: 8px;
            background-color: #80bd00; /* Amber-500 */
            border-radius: 2px;
        }
        .feature-card {
            transition: all 0.3s ease-in-out;
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }