
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #ff7e5f  0%, #feb47b  100%);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #56ab2f ;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #56ab2f ;
        }

        .header-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn-quote {
            background: #56ab2f ;
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            border: none;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btn-quote:hover {
            background: #a8e063 ;
            transform: scale(1.05);
        }

        .btn-call {
            background: transparent;
            color: white;
            padding: 0.6rem 1.5rem;
            border: 2px solid white;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btn-call:hover {
            background: white;
            color: #ff7e5f ;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 700"><rect fill="%23ff7e5f " width="1200" height="700"/><circle cx="300" cy="200" r="120" fill="%2356ab2f " opacity="0.1"/><circle cx="950" cy="600" r="180" fill="%233498db" opacity="0.1"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 8rem 20px;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #56ab2f  0%, #a8e063  100%);
            color: white;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(86, 171, 47, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #ff7e5f ;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
        }

        .btn-secondary:hover {
            background: #ecf0f1;
            transform: translateY(-3px);
        }

        /* Sections */
        section {
            padding: 4rem 20px;
        }

        section h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            color: #ff7e5f ;
        }

        section .subtitle {
            text-align: center;
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* About Section */
        .about {
            background: #ecf0f1;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        /* Services Section */
        .services {
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s;
            border-top: 4px solid #56ab2f ;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .service-card .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #ff7e5f ;
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        /* Why Choose Us */
        .why-choose {
            background: #ecf0f1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
        }

        .feature-card .icon {
            font-size: 3rem;
            color: #56ab2f ;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: #ff7e5f ;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* Warranty Section */
        .warranty {
            background: linear-gradient(135deg, #ff7e5f  0%, #feb47b  100%);
            color: white;
            text-align: center;
        }

        .warranty h2 {
            color: white;
        }

        .warranty-content {
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Quote Form Section */
        .quote-section {
            background: white;
        }

        .quote-form {
            max-width: 600px;
            margin: 2rem auto;
            background: #f8f9fa;
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #ff7e5f ;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #bdc3c7;
            border-radius: 5px;
            font-size: 1rem;
            font-family: inherit;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #56ab2f ;
            box-shadow: 0 0 5px rgba(86, 171, 47, 0.3);
        }

        .quote-form .btn-primary {
            width: 100%;
            margin-top: 1rem;
        }

        /* Testimonials Section */
        .testimonials {
            background: #ecf0f1;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .testimonial {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 4px solid #56ab2f ;
        }

        .testimonial p {
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.8;
            color: #555;
        }

        .testimonial-author {
            font-weight: bold;
            color: #56ab2f ;
        }

        .stars {
            color: #f39c12;
            margin-bottom: 0.5rem;
        }

        /* Contact Section */
        .contact {
            background: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
        }

        .contact-card .icon {
            font-size: 2.5rem;
            color: #56ab2f ;
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            color: #ff7e5f ;
            margin-bottom: 0.5rem;
        }

        .contact-card p {
            color: #7f8c8d;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1.5rem;
        }

        .social-icons a {
            display: inline-flex;
            width: 45px;
            height: 45px;
            background: #56ab2f ;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: #a8e063 ;
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: #000 ;
            color: white;
            padding: 3rem 20px 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: #56ab2f ;
        }

        .footer-section a {
            color: #bdc3c7;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #feb47b ;
            color: #95a5a6;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            animation: fadeIn 0.3s;
        }

        .modal-content {
            background: white;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 8px;
            width: 90%;
            max-width: 500px;
            animation: slideIn 0.3s;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .close {
            color: #7f8c8d;
            float: right;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s;
        }

        .close:hover {
            color: #56ab2f ;
        }

        .success-message {
            background: #d5f4e6;
            color: #27ae60;
            padding: 1rem;
            border-radius: 5px;
            margin: 1rem 0;
            display: none;
            border-left: 4px solid #27ae60;
        }

        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 99;
            display: none;
        }

        .sticky-cta button {
            background: #56ab2f ;
            color: white;
            padding: 1rem 1.5rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }

        .sticky-cta button:hover {
            background: #a8e063 ;
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
            }

            section h2 {
                font-size: 1.8rem;
            }

            .header-cta {
                width: 100%;
                flex-direction: column;
                margin-top: 1rem;
            }

            .sticky-cta {
                bottom: 10px;
                right: 10px;
            }

            .sticky-cta button {
                padding: 0.8rem 1.2rem;
                font-size: 0.9rem;
            }
        }
    