/* Keep hero title on one line */
.hero-title {
    white-space: nowrap !important;
    font-size: clamp(2.5rem, 6vw, 5.5rem) !important;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .hero-title {
        white-space: normal !important;
        word-break: keep-all;
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }
}