* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8f9fa;
}

header {
    text-align: center;
    margin-bottom: 3rem;
}
h1 { font-size: 2.8rem; margin-bottom: 0.5rem; }
.location { font-size: 1.3rem; color: #555; }

.services { margin-bottom: 3rem; }
.services h2 { margin-bottom: 1rem; }
.services ul { list-style: none; }
.services li { padding: 0.5rem 0; font-size: 1.1rem; }

.cta {
    text-align: center;
    margin: 3rem 0;
}
.primary-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1e6b1e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 600;
}
.primary-link:hover { background: #1a5c1a; }

footer { text-align: center; margin-top: 4rem; color: #444; font-size: 0.9rem; }

/* Previous styles + new additions */
.hero {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.location { font-size: 1.25rem; color: #555; margin-bottom: 2rem; }