/* Skyline Safety Contact Page Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}
/* Custom scrollbar to match industrial theme */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #FF5E14; /* safety-orange / yellow */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d97706;
}
/* Caution stripe styling pattern for industrial accents */
.caution-stripes {
    background: repeating-linear-gradient(
        -45deg,
        #FF5E14,
        #FF5E14 10px,
        #0f172a 10px,
        #0f172a 20px
    );
}
