   
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          line-height: 2.6;
            color: #333333;
            background: #000;
            padding-top: 80px; /* Account for fixed header */
        }
        
        /* Header Navigation */
        .header {
position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000e8;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid #333333;
    transition: all 0.3s 
ease;
        }
        
        .header.scrolled {
            background: #000;
    box-shadow: 0 5px 25px rgba(0, 87, 27, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .logo:hover {
            color: #007B24;
            transform: scale(1.05);
        }
        
        .logo-icon {
            font-size: 2.2rem;
            margin-right: 10px;
        }
        
        .nav {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 30px;
        }
        
        .nav li a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav li a:hover {
            color: #d5cfcf;
            background: rgba(0,87,27,0.1);
            transform: translateY(-2px);
        }
        
        /* .nav li a.active {
            color: #d5cfcf;
            background: #fff;
        } */
        
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 10px;
        }
        
        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }
        
        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(0,87,27,0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .mobile-menu.active {
            display: block;
        }
        
        .mobile-menu .nav {
            flex-direction: column;
            padding: 20px;
            gap: 10px;
        }
        
        .mobile-menu .nav li a {
            display: block;
            text-align: center;
            padding: 15px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero {
                background: linear-gradient(135deg, #000 0%, #333333 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
                height: 100vh;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            top: 100px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInUp 0.8s ease-out;
        }
        
        .hero .subtitle {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .cta-primary {
            display: inline-block;
            background: #FFFFFF;
            color: #000;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out 0.4s both;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
            background: #f8f8f8;
        }
        
        .financing-badge {
            display: inline-block;
            background: #FFFFFF;
            color: #fff;
            padding: 15px 35px;
            border-radius: 50px;
            margin-top: 30px;
            font-weight: 700;
            border: 3px solid #fff;
            animation: fadeInUp 0.8s ease-out 0.6s both;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
        }
        
        .financing-badge:hover {
            background: #fff;
            color: #FFFFFF;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(135deg, #0e0e0e 0%, #333333 100%);
            position: relative;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(0,87,27,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(0,87,27,0.1)"/></svg>') repeat;
            opacity: 0.5;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 3rem;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }
        
        .service-card {
            background: #000000;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,87,27,0.12);
            transition: all 0.4s ease;
            border-top: 6px solid #2f2f2f;
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,87,27,0.05), transparent);
            transition: left 0.5s ease;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,87,27,0.2);
            border-top-color: #2f2f2f;
        }
        
        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* About Evergreen Construction Section */
        .about-evergreen {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
            position: relative;
        }
        
        .about-evergreen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
               background: #000;
        }
        
        .about-evergreen-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            background:    #1e1e1e;
            padding: 60px 50px;
            border-radius: 25px;
            box-shadow: 0 20px 60px rgba(0,87,27,0.15);
            border: 3px solid rgba(0,87,27,0.1);
        }
        
        .about-evergreen h2 {
            font-size: 3rem;
            color: #fff;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
            position: relative;
        }
        
        .about-evergreen h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #fff, #007B24);
            border-radius: 2px;
        }
        
        .about-description-main {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #847e7e;;
            margin-bottom: 30px;
            text-align: justify;
        }
        
        .about-description-secondary {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            text-align: justify;
            padding: 25px;
            background: linear-gradient(135deg, rgba(0,87,27,0.05) 0%, rgba(0,123,36,0.08) 100%);
            border-radius: 15px;
            border-left: 5px solid #fff;
        }
        
        .counties-highlight {
            background: linear-gradient(120deg, #fff 0%, #007B24 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 8px;
            font-weight: 700;
        }
        
        .dreams-highlight {
            color: #fff;
            font-weight: 700;
            font-size: 1.1em;
        }
        
        /* Why Choose Evergreen Section */
        .about {
            padding: 100px 0;
            background:#000;;
            position: relative;
        }
        
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(0,87,27,0.05)"/></svg>') repeat;
            opacity: 0.3;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .about-text {
            background: #1e1e1e;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,87,27,0.15);
            border-left: 6px solid #fff;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: #555;
        }
        
        .about-description {
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 25px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(0,87,27,0.05) 0%, rgba(0,123,36,0.08) 100%);
            border-radius: 10px;
            border-left: 4px solid #fff;
        }
        
        .highlight {
            background: linear-gradient(120deg, #000, #2f2f2f 100%);
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-weight: 600;
        }
        
        .features-list {
            list-style: none;
            margin-top: 30px;
        }
        
        .features-list li {
            padding: 10px 0;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
        
        .features-list li::before {
            content: '✅';
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .stat-card {
            text-align: center;
            padding: 30px 20px;
            background: #1e1e1e;
            border-radius: 10px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }
        
        /* Testimonial Section */
        .testimonial {
            background: linear-gradient(135deg, #0e0e0e 0%, #333333 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .testimonial-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial-text {
            font-size: 1.4rem;
            font-style: italic;
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            position: absolute;
            left: -20px;
            top: -20px;
            opacity: 0.3;
        }
        
        .testimonial-author {
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        /* Special Offers Section */
        .special-offers {
            background: linear-gradient(135deg, #fff 0%, #007B24 100%);
            padding: 80px 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .special-offers::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 60,40 90,40 68,60 78,90 50,75 22,90 32,60 10,40 40,40" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
            background-size: 80px 80px;
            opacity: 0.3;
            animation: float 20s linear infinite;
        }
        
        @keyframes float {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-80px) translateY(-80px); }
        }
        
        .special-offers-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .special-offers h2 {
            font-size: 2.8rem;
            margin-bottom: 50px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .offer-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .offer-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.25);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }
        
        .offer-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .offer-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .offer-card p {
            font-style: italic;
            opacity: 0.95;
            line-height: 1.6;
        }
        
        .claim-offer-btn {
            background: white;
            color: #fff;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .claim-offer-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
            background: #f8f8f8;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="45" y="45" width="10" height="10" fill="rgba(0,87,27,0.05)" rx="2"/></svg>') repeat;
            opacity: 0.5;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
            background: white;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,87,27,0.15);
            border: 2px solid rgba(0,87,27,0.1);
        }
        
        .cta-content h2 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #666;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background: #fff;
            color: white;
            transform: translateY(-2px);
        }
        
        /* Enhanced Contact Section */
        .contact {
            background: #FFFFFF;
            padding: 100px 0;
            position: relative;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(0,87,27,0.05)"/><circle cx="80" cy="80" r="1" fill="rgba(0,87,27,0.05)"/></svg>') repeat;
            opacity: 0.6;
        }
        
        .contact-wrapper {
            position: relative;
            z-index: 2;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .contact-header h2 {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .contact-header p {
            font-size: 1.3rem;
            color: #333333;
            opacity: 0.9;
        }
        
        .contact-main {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Enhanced Contact Form Styles */
        .contact-form {
            background: #FFFFFF;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,87,27,0.1);
            border: 2px solid rgba(0,87,27,0.08);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #fff, #007B24);
            border-radius: 20px 20px 0 0;
        }
        
        .contact-form h3 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 30px;
            font-weight: 700;
            text-align: center;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
            font-size: 1rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 1rem;
            color: #333333;
            background: #FFFFFF;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #fff;
            box-shadow: 0 0 0 3px rgba(0,87,27,0.1);
            transform: translateY(-2px);
        }
        
        .form-group input:hover,
        .form-group select:hover,
        .form-group textarea:hover {
            border-color: #fff;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-group select {
            cursor: pointer;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%2300571B"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>');
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 16px;
            appearance: none;
        }
        
        .submit-btn {
            width: 100%;
            padding: 18px 25px;
            background: linear-gradient(135deg, #fff 0%, #007B24 100%);
            color: #FFFFFF;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,87,27,0.2);
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,87,27,0.3);
            background: linear-gradient(135deg, #007B24 0%, #fff 100%);
        }
        
        .submit-btn:active {
            transform: translateY(-1px);
        }
        
        /* Enhanced Contact Info Styles */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-item {
            background: #FFFFFF;
            padding: 35px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,87,27,0.1);
            border-left: 5px solid #fff;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,87,27,0.15);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .contact-item h3 {
            font-size: 1.3rem;
            color: #fff;
            margin-bottom: 12px;
            font-weight: 700;
        }
        
        .contact-item p {
            color: #333333;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .contact-item a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-item a:hover {
            color: #007B24;
            text-decoration: underline;
        }
        
        /* Simplified Footer */
        .footer {
            background: #000;
            color: #FFFFFF;
            padding: 30px 0;
            text-align: center;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer p {
            font-size: 1rem;
            margin: 0;
            opacity: 0.95;
        }
        
        /* Floating Action Button */
        .fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: #fff;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(0,87,27,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .fab:hover {
            transform: scale(1.1);
            background: #007B24;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 968px) {
            .header-content {
                padding: 0 15px;
            }
            
            .nav {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .subtitle {
                font-size: 1.2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-main {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .contact-form {
                padding: 30px 25px;
            }
            
            .about-evergreen-content {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 600px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero .subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .contact-header h2 {
                font-size: 2.2rem;
            }
            
            .contact-form h3 {
                font-size: 1.6rem;
            }
            
            .fab {
                width: 60px;
                height: 60px;
                font-size: 1.3rem;
                bottom: 20px;
                right: 20px;
            }
        }
  