:root {
    --primary-blue: #0d2c4d; /* Deep Navy from logo */
    --accent-gold: #f4c430;  /* Construction Yellow */
    --text-grey: #333;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-grey);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
}

.bg-dark {
    background-color: var(--primary-blue) !important;
}

.text-warning {
    color: var(--accent-gold) !important;
}

.btn-warning {
    background-color: var(--accent-gold);
    border: none;
    font-weight: 600;
}

.btn-warning:hover {
    background-color: #d4a91e;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(rgba(13, 44, 77, 0.8), rgba(13, 44, 77, 0.8)), url('https://source.unsplash.com/1600x900/?construction,building') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.service-card {
    transition: transform 0.3s;
    border: 1px solid #eee;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}