/* Shared stylesheet for all pages */
body { margin: 0; font-family: Arial, sans-serif; background: #f5f5f5; color: #333; }
header { background: #2e7d32; color: white; padding: 20px; text-align: center; }
header h1 { margin: 0; font-size: 2.5rem; }
nav { background: #1b5e20; display: flex; justify-content: center; padding: 10px; }
nav a { color: white; text-decoration: none; margin: 0 15px; font-weight: bold; }
nav a:hover { text-decoration: underline; }
.hero { background: url("images/yard1.jpg") no-repeat center center/cover; height: 50vh; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.hero h2 { font-size: 2rem; background: rgba(0,0,0,0.5); padding: 15px; border-radius: 8px; }
section { padding: 40px 20px; max-width: 1100px; margin: auto; }
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.2); text-align: center; }
.card h3 { margin-top: 0; color: #2e7d32; }
footer { background: #2e7d32; color: white; text-align: center; padding: 20px; margin-top: 40px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px; margin: 8px 0; border: 1px solid #ccc; border-radius: 5px; }
.contact-form button { background: #1b5e20; color: white; border: none; padding: 12px 20px; border-radius: 5px; cursor: pointer; }
.contact-form button:hover { background: #43a047; }
