:root { --primary: #2d6a4f; --bg: #f8f9fa; --text: #212529; }
body { font-family: system-ui, -apple-system, sans-serif; margin: 0; padding: 0; color: var(--text); background: var(--bg); line-height: 1.6; display: flex; flex-direction: column; min-height: 100vh; }
nav { background: #1b4332; padding: 1rem; text-align: center; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
nav a { color: white; text-decoration: none; font-weight: bold; padding: 0.5rem; transition: opacity 0.2s; }
nav a:hover { opacity: 0.8; }
header { background: var(--primary); color: white; padding: 3rem 2rem; text-align: center; margin: 0; }
main { max-width: 800px; margin: 2rem auto; padding: 0 1rem; flex-grow: 1; width: 100%; box-sizing: border-box; }
.card, .service-card { background: white; border: 1px solid #dee2e6; padding: 2rem; margin-bottom: 2rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 1.5rem; }
label { display: block; font-weight: bold; margin-bottom: 0.5rem; }
input, textarea { width: 100%; padding: 0.75rem; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; }
button { background: var(--primary); color: white; border: none; padding: 1rem 2rem; border-radius: 4px; cursor: pointer; font-size: 1rem; font-weight: bold; width: 100%; }
button:hover { background: #1b4332; }
.map-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; }
.map-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
footer { text-align: center; padding: 2rem; color: #6c757d; font-size: 0.9rem; background: #e9ecef; margin-top: auto; }
