
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #000000;
            background-color: #ffffff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header-section {
            background: linear-gradient(135deg, #30A0FF 0%, #1a7acc 100%);
            color: #ffffff;
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .header-section h1 {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .header-section p {
            font-size: 1.3em;
            max-width: 900px;
            margin: 0 auto;
            opacity: 0.95;
        }
        
        .content-section {
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.2em;
            color: #30A0FF;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 4px solid #30A0FF;
            font-weight: 700;
        }
        
        .section-subtitle {
            font-size: 1.6em;
            color: #000000;
            margin: 30px 0 20px 0;
            font-weight: 600;
        }
        
        .intro-text {
            font-size: 1.15em;
            color: #333333;
            margin-bottom: 30px;
            line-height: 1.9;
        }
        
        .highlight-box {
            background: linear-gradient(to right, #f0f9ff, #ffffff);
            border-left: 5px solid #30A0FF;
            padding: 30px;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(48, 160, 255, 0.1);
        }
        
        .product-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .product-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(48, 160, 255, 0.3);
        }
        
        .product-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h3 {
            font-size: 1.3em;
            color: #000000;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .product-info p {
            font-size: 1em;
            color: #555555;
            line-height: 1.6;
        }
        
        .two-column-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 40px 0;
        }
        
        .feature-box {
            background: #ffffff;
            padding: 35px;
            border-radius: 10px;
            border: 2px solid #30A0FF;
            box-shadow: 0 4px 15px rgba(48, 160, 255, 0.15);
        }
        
        .feature-box h3 {
            font-size: 1.5em;
            color: #30A0FF;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.05em;
            color: #333333;
        }
        
        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #30A0FF;
            font-weight: bold;
            font-size: 1.3em;
        }
        
        .inspection-highlights {
            background: linear-gradient(135deg, #30A0FF 0%, #1a7acc 100%);
            color: #ffffff;
            padding: 50px;
            border-radius: 12px;
            margin: 40px 0;
        }
        
        .inspection-highlights h3 {
            font-size: 1.8em;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .inspection-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .inspection-item {
            background: rgba(255, 255, 255, 0.15);
            padding: 25px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }
        
        .inspection-item h4 {
            font-size: 1.3em;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .inspection-item p {
            font-size: 1.05em;
            line-height: 1.7;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
            color: #ffffff;
            padding: 60px;
            border-radius: 12px;
            text-align: center;
            margin: 50px 0;
        }
        
        .cta-section h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #30A0FF;
        }
        
        .cta-section p {
            font-size: 1.25em;
            margin-bottom: 35px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .cta-button {
            display: inline-block;
            padding: 18px 45px;
            font-size: 1.15em;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .cta-button-primary {
            background: #30A0FF;
            color: #ffffff;
        }
        
        .cta-button-primary:hover {
            background: #1a7acc;
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(48, 160, 255, 0.4);
        }
        
        .cta-button-secondary {
            background: transparent;
            color: #30A0FF;
            border: 2px solid #30A0FF;
        }
        
        .cta-button-secondary:hover {
            background: #30A0FF;
            color: #ffffff;
            transform: scale(1.05);
        }
        
        .stats-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin: 50px 0;
            text-align: center;
        }
        
        .stat-box {
            padding: 30px;
            background: #f0f9ff;
            border-radius: 10px;
            border-top: 4px solid #30A0FF;
        }
        
        .stat-number {
            font-size: 2.5em;
            font-weight: 700;
            color: #30A0FF;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1em;
            color: #000000;
            font-weight: 500;
        }
        
        .testimonial-box {
            background: #f9f9f9;
            padding: 40px;
            border-radius: 10px;
            margin: 40px 0;
            border-left: 5px solid #30A0FF;
            font-style: italic;
            font-size: 1.15em;
            color: #333333;
        }
        
        @media (max-width: 768px) {
            .header-section h1 {
                font-size: 2em;
            }
            
            .section-title {
                font-size: 1.8em;
            }
            
            .product-showcase {
                grid-template-columns: 1fr;
            }
            
            .two-column-section {
                grid-template-columns: 1fr;
            }
            
            .cta-section {
                padding: 40px 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
    