<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Pest Control Pros - Expert Local Pest Elimination</title> <meta name="description" content="Professional pest control services: ants, rodents, termites, bed bugs. Fast, safe, guaranteed results."> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #333; } .hero { background: linear-gradient(135deg, #2c5f2d, #4a7c59); color: white; padding: 80px 20px; text-align: center; } .hero h1 { font-size: 3em; margin-bottom: 20px; } .hero p { font-size: 1.3em; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; } .cta { background: #ff6b35; color: white; padding: 15px 30px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1em; display: inline-block; transition: transform 0.3s; } .cta:hover { transform: scale(1.05); } .services { padding: 60px 20px; max-width: 1200px; margin: 0 auto; } .services h2 { text-align: center; font-size: 2.5em; margin-bottom: 50px; color: #2c5f2d; } .service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .service-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); text-align: center; } .service-card h3 { color: #4a7c59; margin-bottom: 15px; } @media (max-width: 768px) { .hero h1 { font-size: 2em; } } </style> </head> <body> <section class="hero"> <h1>Pest Control Pros</h1> <p>Your trusted local experts in safe, effective pest elimination. Bugs, rodents, termites — gone fast.</p> <a href="#services" class="cta">See Our Services</a> </section> <section class="services" id="services"> <h2>Our Services</h2> <div class="service-grid"> <div class="service-card"> <h3>🐜 Ant Control</h3> <p>Eliminate ant colonies with targeted treatments.</p> </div> <div class="service-card"> <h3>🐀 Rodent Removal</h3> <p>Trap and exclude mice, rats safely.</p> </div> <div class="service-card"> <h3>🐛 Termite Treatment</h3> <p>Protect your home from termite damage.</p> </div> <div class="service-card"> <h3>🛏️ Bed Bug Extermination</h3> <p>Complete eradication, heat + chemical.</p> </div> </div> </section> </body> </html>