/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/* Apply base font */
body {
    font-family: 'Inter', sans-serif;
}

/* Home Page Hero Background */
.hero-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), 
                url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
}

/* About Us Hero Background */
.about-hero-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.90), rgba(234, 88, 12, 0.80)), 
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
}

/* Custom Utilities */
.text-balance {
    text-wrap: balance;
}