/* Core Document Resets */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; background-color: #fcfcfc; }

/* Layout Containers */
.header-container, .hero-container, .content-container, .services-container, .banner-container, .footer-container {
    max-width: 1140px; margin: 0 auto; padding: 0 20px;
}

/* Header Architecture */
.site-header { background: #ffffff; border-bottom: 3px solid #1b4d3e; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.header-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo { font-size: 22px; font-weight: 800; color: #1b4d3e; letter-spacing: 0.5px; }
.phone-btn { background: #2e7d32; color: #ffffff; text-decoration: none; padding: 12px 24px; font-weight: bold; border-radius: 4px; font-size: 16px; transition: background 0.2s ease; }
.phone-btn:hover { background: #1b5e20; }

/* Hero Section with Split Flexbox Layout */
.hero-section { background: linear-gradient(rgba(27, 77, 62, 0.85), rgba(15, 45, 35, 0.9)), url('hero-tree.jpg') no-repeat center center/cover; padding: 60px 0; color: #ffffff; }
.hero-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; }
.hero-text { flex: 1; min-width: 300px; }
.hero-text h1 { font-size: 38px; line-height: 1.2; margin-bottom: 15px; color: #ffffff; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.hero-text p { font-size: 18px; margin-bottom: 20px; color: #e2ede9; }
.hero-bullets { list-style: none; }
.hero-bullets li { font-size: 16px; margin-bottom: 8px; font-weight: 600; color: #a5d6a7; }

/* High-Converting Form Container */
.hero-form-box { background: #ffffff; padding: 30px; border-radius: 6px; width: 100%; max-width: 400px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); color: #333; }
.hero-form-box h3 { margin-bottom: 20px; color: #1b4d3e; font-size: 20px; text-align: center; border-bottom: 2px solid #f0f0f0; padding-bottom: 10px; }
.lead-form input, .lead-form select { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 4px; font-size: 15px; font-family: inherit; }
.lead-form input:focus, .lead-form select:focus { border-color: #2e7d32; outline: none; }
.submit-btn { width: 100%; background: #c62828; color: #ffffff; border: none; padding: 14px; font-size: 18px; font-weight: bold; border-radius: 4px; cursor: pointer; transition: background 0.2s ease; }
.submit-btn:hover { background: #b71c1c; }

/* Typography Content Blocks */
.main-content, .authority-section { padding: 50px 0; background: #ffffff; }
.main-content h2, .authority-section h2, .services-container h2 { font-size: 28px; color: #1b4d3e; margin-bottom: 15px; }
.main-content p, .authority-section p { font-size: 16px; color: #555; margin-bottom: 15px; }

/* Grid Service Architecture */
.services-section { padding: 60px 0; background: #f2f7f5; border-top: 1px solid #dfede8; border-bottom: 1px solid #dfede8; }
.services-container h2 { text-align: center; margin-bottom: 40px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: #ffffff; padding: 30px; border-radius: 4px; border: 1px solid #dedede; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.service-card h3 { color: #2e7d32; font-size: 20px; margin-bottom: 12px; }
.service-card p { color: #666; font-size: 15px; }

/* Call To Action Interstitial Banner */
.cta-banner { background: #1b4d3e; color: #ffffff; padding: 50px 0; text-align: center; }
.cta-banner h2 { font-size: 30px; margin-bottom: 10px; }
.cta-banner p { font-size: 18px; margin-bottom: 25px; color: #bfe3d9; }
.banner-phone-btn { display: inline-block; background: #2e7d32; color: #ffffff; text-decoration: none; padding: 15px 35px; font-size: 22px; font-weight: bold; border-radius: 4px; box-shadow: 0 4px 10px rgba(0,0,0,0.15); transition: background 0.2s ease; }
.banner-phone-btn:hover { background: #1b5e20; }

/* Footer Compliance Block */
.site-footer { background: #1a1a1a; color: #999999; padding: 40px 0; text-align: center; font-size: 14px; }
.agency-credit { margin: 10px 0; color: #666; }
.footer-links a { color: #a5d6a7; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

/* Responsive Media Controls */
@media (max-width: 768px) {
    .header-container { flex-direction: column; text-align: center; gap: 15px; }
    .hero-container { flex-direction: column; }
    .hero-text h1 { font-size: 30px; }
    .cta-banner h2 { font-size: 24px; }
}
