
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        header h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        header p {
            font-size: 18px;
            opacity: 0.9;
        }
        
        .quality-section {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .quality-section h2 {
            color: #3498db;
            font-size: 24px;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
        }
        
        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .equipment-item {
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .equipment-item:hover {
            transform: translateY(-5px);
        }
        
        .equipment-item img {
            max-width: 80%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .equipment-item h3 {
            color: #2c3e50;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .equipment-item p {
            color: #7f8c8d;
            font-size: 14px;
        }
        
        .quality-process {
            background-color: #3498db;
            color: white;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 40px;
        }
        
        .quality-process h2 {
            font-size: 24px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .process-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .process-step {
            text-align: center;
        }
        
        .process-step .step-number {
            background-color: white;
            color: #3498db;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px auto;
            font-size: 20px;
            font-weight: bold;
        }
        
        .process-step h3 {
            font-size: 16px;
            margin-bottom: 10px;
        }
        
        .process-step p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .quality-commitment {
            background-color: white;
            border-radius: 8px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        .quality-commitment h2 {
            color: #2c3e50;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .quality-commitment p {
            color: #7f8c8d;
            font-size: 16px;
            margin-bottom: 30px;
        }
        
        .quality-commitment ul {
            list-style-type: none;
            padding: 0;
            margin: 0 auto;
            max-width: 600px;
        }
        
        .quality-commitment li {
            margin-bottom: 15px;
            color: #2c3e50;
            font-size: 16px;
        }
        
        .quality-commitment li:before {
            content: "✓ ";
            color: #27ae60;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            header h1 {
                font-size: 28px;
            }
            
            .quality-section {
                padding: 20px;
            }
            
            .equipment-grid {
                grid-template-columns: 1fr;
            }
            
            .process-row {
                grid-template-columns: 1fr;
            }
        }
    