/* Basic reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Arial, sans-serif; color: #000; background: #fff; }

/* Sections */
.section { padding: 60px 20px; max-width: 1200px; margin: auto; }
.gray { background: #f5f5f5; }

/* Hero */
.hero { height: 70vh; background: url('hatter.jpg') center/cover no-repeat; position: relative; display: flex; align-items: center; justify-content: center; }
.hero .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.hero-content { position: relative; color: #fff; text-align: center; }
.hero-content h1 { font-size: 48px; margin-bottom: 10px; }
.hero-content p { font-size: 20px; margin-bottom: 20px; }

/* Buttons */
.btn { background: #1a7f1a; color: #fff; padding: 12px 28px; border-radius: 4px; text-decoration: none; display: inline-block; }
.btn:hover { opacity: 0.85; }

/* Headings */
h2 { margin-bottom: 20px; color: #1a7f1a; font-size: 32px; text-align: center; }
h3 { color: #1a7f1a; margin-top: 10px; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.service img { width: 100%; border-radius: 8px; }
.service p { margin-top: 8px; }

/* Contact */
form { max-width: 600px; margin: 30px auto 0; display: flex; flex-direction: column; gap: 15px; }
input, textarea { padding: 12px; border: 1px solid #ccc; border-radius: 4px; }

/* Footer */
.footer { padding: 20px; text-align: center; background: #f5f5f5; margin-top: 40px; }
