/* Base Styles */
body {
    font-family: 'Monserat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: #222;
    margin-bottom: 0.75rem;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Navbar Styles */
.navbar {
    background-color: #343a40 !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f8f9fa !important;
}

.navbar-nav .nav-link {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    color: #adb5bd !important;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

/* Hero Solid Color Style */
.hero-solid-color {
    background-image: url('/hero-background-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 8rem 0;
    color: #fff !important;
    text-align: center;
}

.hero-solid-color::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-solid-color .container {
    position: relative;
    z-index: 1;
}

.hero-solid-color .display-3 {
    font-size: 3rem;
    font-weight: bolder;
    margin-bottom: 1.5rem;
    color: #f8f9fa; /* Changed to light grey/white */
    text-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.5); /* Added text shadow */
}

.hero-solid-color .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Services Section Styles */
.services-section {
    padding: 3rem 0;
    background-color: #fff;
}

.services-section h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 2rem;
    text-align: center;
}

.card {
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.08);
}

.card-header {
    background-color: #f0f0f0;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    color: #333333;
    border-radius: 0.25rem 0.25rem 0 0;
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 0.5rem;
    text-align: center;
}

.card-text {
    font-size: 1rem;
    color: #495057