:root {
    --primary: #3B4F5F; /* Slate Blue - evokes trust and the rugged mountains of New Hampshire */
    --secondary: #7D8B6B; /* Olive Green - represents environmental awareness and nature, suitable for mold detection */
    --accent: #B8860B; /* Dark Goldenrod - a muted accent for highlighting services, implying reliability and expertise */
    --neutral: #E0E5E8; /* Light Blue Gray - clean and neutral, symbolizing purity and professionalism */
    --text: #2D2D2D; /* Dark Gray - clear and readable for text */
    --light: #F8F8F8; /* Off White - soft background for lightness and cleanliness */
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--neutral);
    color: var(--text);
    line-height: 1.6;
}

/* Override Bootstrap primary classes */
.bg-primary {
    background-color: var(--primary) !important;
}
.text-primary {
    color: var(--primary) !important;
}
.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
}
.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline-primary:hover {
    background-color: var(--accent);
    color: var(--light);
}

.hero {
    position: relative;
    min-height: 400px;
    background: url('https://nhmolddogs.com/images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, rgba(59, 79, 95, 0.4), rgba(125, 139, 107, 0.6));
}
.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
    font-size: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.hero h2 {
    font-size: 1.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.card {
    background-color: var(--light);
    border-color: var(--secondary);
}
.list-group-item {
    background-color: var(--light);
    border-color: var(--secondary);
}
footer {
    text-align: center;
    padding: 2rem 0;
    font-size: .9rem;
    color: var(--text);
    background-color: var(--light);
    border-top: 1px solid var(--secondary);
    margin-top: 4rem;
}
@media (max-width: 768px) {
    .hero {
        min-height: 300px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero h2 {
        font-size: 1.5rem;
    }
}