.row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .method-results {
            background: #e8f5e8;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .method-results h4 {
            color: #2e7d32;
            margin-bottom: 15px;
        }
        
        .method-item {
            display: flex;
            justify-content: space-between;
            margin: 10px 0;
            padding: 8px 0;
        }
        
        .tips {
            background: #fff3e0;
            border-left: 4px solid #ff9800;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
        }
        
        .tips h4 {
            color: #f57c00;
            margin-bottom: 10px;
        }
        
        .tips ul {
            color: #424242;
            line-height: 1.6;
            padding-left: 20px;
        }
        
        .warning {
            background: #ffebee;
            border-left: 4px solid #f44336;
            padding: 20px;
            margin: 20px 0;
            border-radius: 8px;
        }
        
        .warning h4 {
            color: #d32f2f;
            margin-bottom: 10px;
        }
        
        .warning p {
            color: #424242;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .row {
                grid-template-columns: 1fr;
            }
        }
