<style>
        * {
            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 */
        .top-bar {
            background: #1a1a1a;
            color: white;
            padding: 10px 0;
            font-size: 0.9em;
        }

        .top-bar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-info {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #ffa500;
        }

        /* Navigation */
        nav {
            background: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8em;
            font-weight: 700;
            color: #ffa500;
            padding: 20px 0;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
            padding: 25px 0;
            display: block;
        }

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

        .cta-button {
            background: #ffa500;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }

        .cta-button:hover {
            background: #ff8c00;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .breadcrumb {
            color: rgba(255,255,255,0.8);
            margin-top: 10px;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 20px;
        }

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

        .intro-content h2 {
            font-size: 2.5em;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .intro-content .subtitle {
            color: #ffa500;
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .intro-content p {
            font-size: 1.1em;
            line-height: 1.8;
            color: #666;
            margin-bottom: 30px;
        }

        .btn-primary {
            background: #ffa500;
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 5px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s;
        }

        .btn-primary:hover {
            background: #ff8c00;
        }

        .intro-image {
            width: 100%;
            height: 400px;
            background: #f0f0f0;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        /* Stats Section */
        .stats-section {
            background: #f8f9fa;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .stat-item h3 {
            font-size: 1.3em;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .progress-bar {
            background: #e0e0e0;
            height: 8px;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 10px;
        }

        .progress-fill {
            background: #ffa500;
            height: 100%;
            width: 100%;
            transition: width 1s ease;
        }

        .stat-item p {
            color: #666;
            margin-top: 10px;
        }

        /* Services Section */
        .services-section h2 {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            color: #ffa500;
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 50px;
        }

        .services-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 40px;
        }

        .services-list ul {
            list-style: none;
        }

        .services-list li {
            padding: 15px 0;
            padding-left: 30px;
            position: relative;
            color: #666;
            font-size: 1.05em;
        }

        .services-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #ffa500;
            font-weight: bold;
        }

        .equipment-grid {
            display: grid;
            gap: 30px;
        }

        .equipment-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .equipment-card:hover {
            transform: translateY(-5px);
        }

        .equipment-image {
            width: 100%;
            height: 200px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        .equipment-info {
            padding: 20px;
        }

        .equipment-info h3 {
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .equipment-info p {
            color: #666;
            font-size: 0.95em;
        }

        /* Testimonial Section */
        .testimonial-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .testimonial-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-image {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        .testimonial-text {
            font-size: 1.2em;
            line-height: 1.8;
            font-style: italic;
            margin: 30px 0;
        }

        .testimonial-author {
            font-size: 1.1em;
            font-weight: 600;
        }

        .testimonial-role {
            color: rgba(255,255,255,0.8);
            margin-top: 5px;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 20px 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 40px;
        }

        .footer-section h3 {
            color: #ffa500;
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #ffa500;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .intro-section,
            .services-content {
                grid-template-columns: 1fr;
            }

            .nav-menu {
                display: none;
            }

            .hero h1 {
                font-size: 2em;
            }

            .intro-content h2 {
                font-size: 2em;
            }
        }
    </style>
