Changed around line 1
+ :root {
+ --primary: #2a7f62;
+ --primary-light: #3da57a;
+ --secondary: #2d3748;
+ --accent: #f6ad55;
+ --light: #f7fafc;
+ --gray: #e2e8f0;
+ --dark-gray: #4a5568;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ color: var(--secondary);
+ background-color: var(--light);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--primary-light));
+ color: white;
+ padding: 2rem 0;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
+ opacity: 0.3;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ color: white;
+ text-decoration: none;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.3s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background-color: var(--accent);
+ color: var(--secondary);
+ padding: 0.5rem 1rem;
+ border-radius: 4px;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 4rem auto;
+ padding: 0 2rem;
+ text-align: center;
+ position: relative;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ max-width: 600px;
+ margin: 0 auto 2rem;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background-color: var(--accent);
+ color: var(--secondary);
+ padding: 0.8rem 1.5rem;
+ border-radius: 4px;
+ font-weight: 600;
+ text-decoration: none;
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 4rem 2rem;
+ }
+
+ section {
+ margin-bottom: 4rem;
+ }
+
+ h2 {
+ font-size: 2rem;
+ margin-bottom: 2rem;
+ text-align: center;
+ color: var(--primary);
+ }
+
+ .service-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .service-card {
+ background: white;
+ border-radius: 8px;
+ padding: 2rem;
+ text-align: center;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.05);
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .service-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 15px rgba(0,0,0,0.1);
+ }
+
+ .service-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .service-card h3 {
+ margin-bottom: 1rem;
+ color: var(--primary);
+ }
+
+ .about-content {
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.05);
+ margin-bottom: 2rem;
+ }
+
+ .stats {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
+ gap: 1rem;
+ text-align: center;
+ }
+
+ .stat {
+ background: white;
+ padding: 1.5rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.05);
+ }
+
+ .stat h3 {
+ color: var(--primary);
+ font-size: 1.8rem;
+ }
+
+ .quote-form {
+ max-width: 600px;
+ margin: 0 auto;
+ background: white;
+ padding: 2rem;
+ border-radius: 8px;
+ box-shadow: 0 4px 6px rgba(0,0,0,0.05);
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ .form-group label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ .form-group input,
+ .form-group select,
+ .form-group textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 1px solid var(--gray);
+ border-radius: 4px;
+ font-family: inherit;
+ }
+
+ .form-group textarea {
+ min-height: 120px;
+ }
+
+ .submit-button {
+ background-color: var(--primary);
+ color: white;
+ border: none;
+ padding: 0.8rem 1.5rem;
+ border-radius: 4px;
+ font-weight: 600;
+ cursor: pointer;
+ transition: background-color 0.3s;
+ width: 100%;
+ }
+
+ .submit-button:hover {
+ background-color: var(--primary-light);
+ }
+
+ footer {
+ background-color: var(--secondary);
+ color: white;
+ padding: 3rem 0;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 2rem;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .contact-info p {
+ margin-bottom: 0.5rem;
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+ }
+
+ .hours p {
+ margin-bottom: 0.5rem;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.2rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .service-grid {
+ grid-template-columns: 1fr;
+ }
+ }