
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #03382d;
            overflow-x: hidden;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f7fafc;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #01735a, #00a28a);
            border-radius: 4px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #01735a, #00a28a);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            transform: rotate(-5deg);
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #01735a, #00a28a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-menu a {
            color: #4a5568;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #01735a, #00a28a);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: #01735a;
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        /* Hero Section - Asymmetric Layout */
        /* Base Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdfd;
    color: #333;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 10%;
    background: linear-gradient(135deg, #e1fbf5, #cdfdf3);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Left Content */
.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    background-color: #fff3cd;
    color: #856404;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #222;
}

.hero-content .highlight {
    color: #01735a;
    background: linear-gradient(to right, #01735a, #00a28a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444;
}

/* Call to Action Button */
.creative-btn {
    display: inline-block;
    padding: 14px 28px;
    background-color: #01735a;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.creative-btn:hover {
    background-color: #01735a;
    transform: translateY(-3px);
}

/* Right Visuals */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-elements {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

/* Floating Cards */
.floating-card {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    width: 220px;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.floating-card h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #01735a;
}

.floating-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
}

/* Float Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 5%;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .visual-elements {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-card {
        margin: 10px;
    }
}


        /* Asymmetric Content Sections */
        .asymmetric-section {
            padding: 6rem 0;
            position: relative;
        }

        .section-skew {
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: linear-gradient(135deg, #f093fb, #f5576c);
            transform: skewX(10deg);
            transform-origin: top;
            opacity: 0.1;
        }

        /* About Section */
        .about {
            background: #f7fafc;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 0.6fr 1.4fr;
            gap: 6rem;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-card {
            background: linear-gradient(135deg, #01735a, #00a28a);
            color: white;
            padding: 3rem;
            border-radius: 25px;
            text-align: center;
            transform: rotate(-3deg);
            box-shadow: 0 20px 60px rgba(1, 115, 90, 0.3);
        }

        .about-card h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .about-card .stat {
            font-size: 3rem;
            font-weight: 900;
            display: block;
            margin: 1rem 0;
        }

        .about-content h2 {
            font-size: 3rem;
            font-weight: 900;
            color: #03382d;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .about-content .highlight {
            background: linear-gradient(135deg, #01735a, #00a28a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #4a5568;
            margin-bottom: 2rem;
        }

        .features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .feature-point {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #01735a, #00a28a);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        /* Services Section */
        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .services-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-title {
            font-size: 3rem;
            font-weight: 900;
            color: #03382d;
            margin-bottom: 1rem;
        }

        .services-subtitle {
            font-size: 1.2rem;
            color: #718096;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #01735a, #00a28a);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(1, 115, 90, 0.15);
        }

        .service-card:nth-child(even) {
            margin-top: 2rem;
        }

        .service-card .icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #01735a, #00a28a);
            color: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #03382d;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #718096;
            line-height: 1.6;
        }

        /* Creative sections continue with similar asymmetric patterns... */
        .why-choose {
            background: linear-gradient(135deg, #01735a, #00a28a);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 140%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        .benefits-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .benefits-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .benefit-card .icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }

        /* Warranty Section */
        .warranty {
            background: #03382d;
            color: white;
        }

        .warranty-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            text-align: center;
        }

        .warranty-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .warranty-card {
            background: linear-gradient(135deg, #01735a, #00a28a);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .warranty-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent);
        }

        /* Contact Section */
        .contact {
            background: #f7fafc;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info {
            background: linear-gradient(135deg, #01735a, #00a28a);
            color: white;
            padding: 3rem;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }

        .contact-item .icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .form-section {
            background: white;
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .form-section h3 {
            font-size: 2rem;
            color: #03382d;
            margin-bottom: 2rem;
            font-weight: 800;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #4a5568;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #01735a;
            box-shadow: 0 0 0 3px rgba(1, 115, 90, 0.1);
        }

        /* Testimonials */
        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            position: relative;
            transform: rotate(1deg);
            transition: all 0.3s ease;
        }

        .testimonial:nth-child(even) {
            transform: rotate(-1deg);
        }

        .testimonial:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .testimonial::before {
            content: '\"';
            position: absolute;
            top: 1rem;
            left: 2rem;
            font-size: 4rem;
            color: #01735a;
            opacity: 0.3;
            font-weight: 900;
        }

        /* Footer */
        .footer {
            background: #03382d;
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #01735a, #00a28a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #4a5568;
            color: #a0aec0;
        }

        /* Popups */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            z-index: 10000;
        }

        .popup {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 3rem;
            border-radius: 25px;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
        }

        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #a0aec0;
            transition: color 0.3s ease;
        }

        .close-btn:hover {
            color: #01735a;
        }

        .confirmation {
            display: none;
            background: linear-gradient(135deg, #48bb78, #38b2ac);
            color: white;
            padding: 1rem;
            border-radius: 15px;
            margin-top: 1rem;
            text-align: center;
            font-weight: 600;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.1; }
            50% { opacity: 0.2; }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content {
                padding: 6rem 2rem 2rem;
            }

            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .features-list {
                grid-template-columns: 1fr;
            }

            .nav-menu {
                gap: 1rem;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
            }

            .asymmetric-section {
                padding: 4rem 0;
            }
        }
    