/* General layout tweaks */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
}

/* Highlight section headings */
h1, h2, h3 {
    margin-top: 30px;
    font-weight: 600;
}

/* Navbar branding */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Custom footer style */
footer {
    font-size: 0.9rem;
}

/* Custom button style */
.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.hero-section {
    position: relative;
    height: 100vh;
    background: url('../assets/office-bg.jpg') no-repeat center center/cover;
}

.hero-section .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.hero-section .content {
    z-index: 2;
}
