 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.8;
            color: #333;
            background: #f8f8f8;
        }
        
        .header {
            background: white;
            padding: 40px 20px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .header h1 {
            font-size: 2.5em;
            margin-bottom: 15px;
            font-weight: 600;
            color: #333;
        }
        
        .header p {
            font-size: 1.1em;
            color: #666;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section-header {
            background: #D70027;
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            display: inline-block;
            font-size: 1.3em;
            font-weight: 600;
            margin: 40px 0 30px 0;
            box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
        }
        
        .section {
            background: white;
            margin: 10px 0 10px 0;
            padding: 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        
        .section-content {
            padding: 20px;
        }
        
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            align-items: center;
        }
        
        .image-container {
            width: 100%;
            height: 100%;
            min-height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2em;
            position: relative;
            overflow: hidden;
        }
        
        .image-container::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        .text-container {
            padding: 20px;
        }
        
        .text-container h3 {
            font-size: 1.8em;
            margin-bottom: 25px;
            color: #333;
            font-weight: 600;
        }
        
        .text-container p {
            font-size: 1.05em;
            line-height: 1.9;
            color: #555;
            margin-bottom: 15px;
        }
        
        .view-more-btn {
            display: inline-block;
            background: #2c3e50;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s;
            font-size: 0.95em;
        }
        
        .view-more-btn:hover {
            background: #34495e;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            padding: 40px;
        }
        
        .feature-card {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #dc143c;
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        
        .feature-card h4 {
            color: #dc143c;
            font-size: 1.3em;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .feature-card p {
            color: #555;
            line-height: 1.8;
        }
        
        .rule-templates {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2px;
            padding: 20px;
        }
        
        .template-item {    
            background: white;
            border: 2px solid #D70027;
            color: #D70027;
            padding: 10px;
            border-radius: 6px;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .template-item:hover {
            background: #D70027;
            color: white;
        }
        
        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            padding: 40px;
        }
        
        .use-case {
            padding: 25px;
            background: #f8f9fa;
            border-radius: 8px;
            border-top: 3px solid #dc143c;
        }
        
        .use-case h4 {
            color: #dc143c;
            margin-bottom: 15px;
            font-size: 1.2em;
            font-weight: 600;
        }
        
        .use-case ul {
            list-style: none;
            padding-left: 0;
        }
        
        .use-case li {
            padding: 8px 0;
            color: #555;
            position: relative;
            padding-left: 20px;
        }
        
        .use-case li:before {
            content: "●";
            color: #dc143c;
            font-size: 0.8em;
            position: absolute;
            left: 0;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            padding: 40px;
        }   
        
        .benefit-card {
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            border-left: 5px solid #dc143c;
        }
        
        .benefit-icon {
            font-size: 3em;
            margin-bottom: 10px;
            color: #dc143c;
        }
        
        .benefit-card h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.5em;
            font-weight: 600;
        }
        
        .benefit-card p {
            color: #555;
            line-height: 1.8;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .specs-table th,
        .specs-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .specs-table th {
            background: #f8f9fa;
            color: #333;
            font-weight: 600;
            width: 200px;
        }
        
        .specs-table td {
            color: #555;
        }
        
        .specs-table tr:hover {
            background: #f8f9fa;
        }
        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            padding: 40px;
        }
        
        .video-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s;
            text-decoration: none;
            color: #333;
            display: block;
        }
        
        .video-card:hover {
            border-color: #dc143c;
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        
        .video-card strong {
            display: block;
            color: #dc143c;
            font-size: 1.1em;
            margin-bottom: 10px;
        }
        
        .video-card span {
            color: #999;
            font-size: 0.9em;
        }
        
        .diagram-placeholder {
            background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
            border: 2px dashed #667eea;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            margin: 10px 0;
            color: #667eea;
            font-size: 1.2em;
            font-weight: 600;
        }
        
        .key-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            padding: 40px;
        }
        
        .key-feature {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 30px;
        }
        
        .key-feature h4 {
            color: #dc143c;
            margin-bottom: 15px;
            font-size: 1.3em;
            font-weight: 600;
        }
        
        .key-feature p {
            color: #555;
            line-height: 1.8;
        }
        
        .cta-section {
            background: white;
            border-top: 1px solid #e0e0e0;
            padding: 50px 20px;
            text-align: center;
            margin-top: 60px;
        }
        
        .cta-section h2 {
            color: #333;
            margin-bottom: 20px;
            font-size: 1.8em;
        }
        
        .cta-section p {
            font-size: 1.1em;
            color: #666;
            margin-bottom: 30px;
        }
        
        .cta-button {
            display: inline-block;
            background: #dc143c;
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 1.1em;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            background: #b01030;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
        }
        
        @media (max-width: 1024px) {
            .two-column {
                grid-template-columns: 1fr;
            }
            
            .features-grid,
            .use-cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .rule-templates {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .video-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .features-grid,
            .use-cases-grid,
            .benefits-grid,
            .rule-templates,
            .video-grid,
            .key-features {
                grid-template-columns: 1fr;
            }
            
            .text-container {
                padding: 30px;
            }
            
            .section-content {
                padding: 25px;
            }
        }



