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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background: #f0f0f0;
        }

        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: white;
            border-bottom: 1px solid #e5e7eb;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.95);
        }

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

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #00a8e8;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo span:first-child {
            font-size: 28px;
        }

        nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: #374151;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

        nav a:hover {
            color: #2e7d32;
        }

        .cta-btn {
            padding: 10px 24px;
            background: #00a8e8;
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            background: #0086b3;
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 6px;
            background: none;
            border: none;
            padding: 8px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #374151;
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(10px, 10px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: white;
            border-bottom: 1px solid #e5e7eb;
            flex-direction: column;
            gap: 16px;
            padding: 24px 32px;
            z-index: 49;
            animation: slideDown 0.3s ease-out;
        }

        .mobile-menu.active {
            display: flex;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu a,
        .mobile-menu button {
            text-decoration: none;
            color: #374151;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 0;
            background: none;
            border: none;
            cursor: pointer;
            width: 100%;
            text-align: left;
        }

        .mobile-menu .cta-btn {
            width: 100%;
            text-align: center;
            padding: 12px 24px;
        }

        .hero {
            background: #5fb837;
            padding: 120px 32px 80px;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 24px;
            color: white;
        }

        .hero p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 32px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-primary {
            background: #00a8e8;
            color: white;
        }

        .btn-primary:hover {
            background: #0086b3;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 168, 232, 0.2);
        }

        .btn-secondary {
            background: white;
            color: #5fb837;
            border: 2px solid #5fb837;
        }

        .btn-secondary:hover {
            background: #f0f0f0;
        }

        .stats {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
            z-index: 10;
        }

        .stat-card {
            background: white;
            padding: 48px 32px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
            transition: all 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(46, 125, 50, 0.15);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: #5fb837;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 16px;
            color: #6b7280;
            font-weight: 500;
        }

        .services {
            padding: 120px 32px;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #1f2937;
        }

        .section-header p {
            font-size: 18px;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .service-card {
            background: #f9fafb;
            padding: 40px;
            border-radius: 12px;
            border-left: 4px solid #00a8e8;
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            background: #e6f7ff;
            box-shadow: 0 12px 40px rgba(0, 168, 232, 0.1);
        }

        .service-icon {
            width: 56px;
            height: 56px;
            background: #5fb837;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 16px;
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
        }

        .service-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1f2937;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.8;
            margin-bottom: 16px;
            font-size: 15px;
        }

        .service-list {
            list-style: none;
        }

        .service-list li {
            padding: 8px 0;
            color: #6b7280;
            font-size: 14px;
        }

        .service-list li:before {
            content: "→ ";
            color: #2e7d32;
            font-weight: 600;
            margin-right: 8px;
        }

        .expertise {
            padding: 120px 32px;
            background: #f9fafb;
        }

        .expertise-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .expertise-text h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 24px;
            color: #1f2937;
        }

        .expertise-text p {
            font-size: 16px;
            color: #6b7280;
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .expertise-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .expertise-list li {
            background: white;
            padding: 16px;
            border-radius: 8px;
            color: #374151;
            font-weight: 500;
            border-left: 3px solid #00a8e8;
            transition: all 0.2s;
        }

        .expertise-list li:hover {
            transform: translateX(8px);
            box-shadow: 0 4px 12px rgba(95, 184, 55, 0.1);
        }

        .carousel-wrapper {
            max-width: 1400px;
            margin: 0 auto;
        }

        .carousel {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 40px;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: 24px;
        }

        .carousel-button {
            background: #00a8e8;
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-button:hover {
            background: #0086b3;
            transform: scale(1.1);
        }

        .carousel-button:disabled {
            background: #d1d5db;
            cursor: not-allowed;
            transform: none;
        }

        .carousel-page-info {
            font-weight: 600;
            color: #374151;
            min-width: 100px;
            text-align: center;
        }

        .testimonial-card {
            background: #f9fafb;
            padding: 32px;
            border-radius: 12px;
            border-top: 4px solid #00a8e8;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 280px;
            animation: fadeIn 0.5s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .testimonial-text {
            color: #6b7280;
            margin-bottom: 24px;
            font-style: italic;
            line-height: 1.8;
            flex-grow: 1;
        }

        .testimonial-author {
            color: #1f2937;
            font-weight: 600;
        }

        .testimonial-role {
            color: #9ca3af;
            font-size: 14px;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #00a8e8;
            width: 32px;
            border-radius: 6px;
        }

        .testimonials {
            padding: 120px 32px;
            background: white;
        }

        .why-choose {
            padding: 120px 32px;
            background: #5fb837;
            color: white;
        }

        .why-choose-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .why-choose h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 60px;
            text-align: center;
        }

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

        .why-item {
            display: flex;
            gap: 16px;
        }

        .why-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .why-icon svg {
            width: 28px;
            height: 28px;
            color: white;
        }

        .why-content h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .why-content p {
            font-size: 15px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .contact-section {
            padding: 120px 32px;
            background: white;
        }

        .contact-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .contact-header h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .contact-header p {
            font-size: 18px;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

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

        .contact-card {
            background: #f9fafb;
            padding: 40px;
            border-radius: 12px;
            border-left: 4px solid #00a8e8;
            text-align: center;
            transition: all 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(95, 184, 55, 0.1);
        }

        .contact-card-icon {
            width: 64px;
            height: 64px;
            background: #5fb837;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: white;
        }

        .contact-card-icon svg {
            width: 32px;
            height: 32px;
        }

        .contact-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #1f2937;
        }

        .contact-card p {
            font-size: 16px;
            color: #2e7d32;
            font-weight: 600;
        }

        .contact-card a {
            color: #2e7d32;
            text-decoration: none;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1000;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
        }

        .modal-content {
            position: relative;
            z-index: 1001;
            background: white;
            border-radius: 12px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .modal-header h2 {
            font-size: 24px;
            font-weight: 700;
            color: #1f2937;
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 32px;
            color: #9ca3af;
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s;
        }

        .modal-close:hover {
            color: #1f2937;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #5fb837;
            box-shadow: 0 0 0 3px rgba(95, 184, 55, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: #5fb837;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .submit-btn:hover {
            background: #4a9229;
        }

        footer {
            background: #1f2937;
            color: white;
            padding: 40px 32px;
            text-align: center;
        }

        footer p {
            opacity: 0.8;
            font-size: 14px;
        }

        footer a {
            color: #00a8e8;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        #legalBody {
            color: #6b7280;
            line-height: 1.8;
            padding: 20px 0;
        }

        #legalBody h3 {
            font-size: 18px;
            color: #1f2937;
            font-weight: 700;
            margin-top: 24px;
            margin-bottom: 12px;
        }

        #legalBody p {
            margin-bottom: 16px;
        }

        #legalBody ul {
            margin-left: 20px;
            margin-bottom: 16px;
        }

        #legalBody li {
            margin-bottom: 8px;
        }

        @media (max-width: 1024px) {
            .stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .expertise-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

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

            .carousel {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            nav {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .hero {
                padding: 60px 16px 60px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .services {
                padding: 60px 16px;
            }

            .expertise {
                padding: 60px 16px;
            }

            .testimonials {
                padding: 60px 16px;
            }

            .why-choose {
                padding: 60px 16px;
            }

            .contact-section {
                padding: 60px 16px;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
                padding: 0 16px;
            }

            .stat-card {
                padding: 24px;
            }

            .stat-number {
                font-size: 36px;
            }

            .stat-label {
                font-size: 14px;
            }

            .carousel {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .carousel-button {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .why-choose h2 {
                font-size: 32px;
            }

            .contact-header h2 {
                font-size: 32px;
            }

            .expertise-text h2 {
                font-size: 32px;
            }

            .header-content {
                padding: 16px;
            }

            .logo {
                font-size: 20px;
            }

            .logo span:first-child {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .stats {
                grid-template-columns: 1fr;
            }

            .carousel {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero p {
                font-size: 14px;
            }

            .hero-content {
                margin-bottom: 40px;
            }

            .stat-card {
                padding: 16px;
            }

            .section-header h2 {
                font-size: 24px;
            }

            .section-header p {
                font-size: 14px;
            }

            .modal-content {
                padding: 24px;
            }

            .modal-header h2 {
                font-size: 20px;
            }

            .testimonial-card {
                padding: 20px;
                min-height: auto;
            }

            .testimonial-text {
                font-size: 14px;
            }

            .why-choose h2 {
                font-size: 24px;
            }

            .service-card {
                padding: 20px;
            }
        }