:root {
    --primary-color: #0056b3;
    --secondary-color: #f8f9fa;
    --accent-color: #ffc107;
    --text-color: #333;
    --light-text: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-button {
    background-color: var(--accent-color);
    color: #000;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e0a800;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.8)), url('https://images.unsplash.com/photo-1449156001935-d2861525a59d?auto=format&fit=crop&w=1500&q=80'); /* Placeholder image of Maine-like scenery if possible, or just a gradient */
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.primary-button {
    background-color: var(--accent-color);
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.2s;
    display: inline-block;
}

.primary-button:hover {
    transform: scale(1.05);
}

.services {
    margin-bottom: 3rem;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-top: 5px solid var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 3rem;
}

.about h2 {
    margin-bottom: 1.5rem;
}

footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 3rem 5%;
    text-align: center;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
}
