        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }
        
        .tool-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .tool-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }
        
        .tool-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        .tool-icon-fa {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #667eea;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .tool-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: #2d3748;
        }
        
        .tool-description {
            font-size: 0.95rem;
            color: #718096;
            line-height: 1.5;
            margin-bottom: 0;
        }
        
        /* Tool Badge */
        .tool-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: #38a169;
            color: white;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-left: 0.5rem;
            vertical-align: middle;
        }
        
        /* Tool Preview Section */
        .tool-preview-section {
            background: #f8fafc;
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            border: 1px solid #e2e8f0;
        }
        
        .preview-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }
        
        .preview-image {
            background: white;
            border-radius: 8px;
            padding: 1rem;
            border: 2px solid #e2e8f0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }
        
        .preview-image img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            display: block;
        }
        
        .preview-label {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(66, 153, 225, 0.9);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .preview-label.after {
            background: rgba(56, 161, 105, 0.9);
            left: auto;
            right: 10px;
        }
        
        .preview-arrow {
            text-align: center;
            font-size: 2rem;
            color: #4299e1;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .preview-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .preview-arrow {
                display: none;
            }
        }
        
        /* Feature Highlight */
        .feature-highlight {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            padding: 2rem;
            margin: 3rem 0;
            color: white;
            text-align: center;
        }
        
        .feature-highlight h2 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .feature-highlight p {
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        
        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.07);
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .comparison-table th {
            background: #f7fafc;
            font-weight: 600;
            color: #2d3748;
        }
        
        .comparison-table tr:hover {
            background: #f8fafc;
        }
        
        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .process-step {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
        }
        
        .step-number {
            display: inline-block;
            width: 36px;
            height: 36px;
            background: #4299e1;
            color: white;
            border-radius: 50%;
            line-height: 36px;
            font-weight: bold;
            margin-bottom: 1rem;
        }
        
        /* Info Boxes */
        .info-box {
            background: #e6fffa;
            border-left: 4px solid #4fd1c5;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 6px 6px 0;
        }
        
        .warning-box {
            background: #fff5f5;
            border-left: 4px solid #fc8181;
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 6px 6px 0;
        }
        
        /* FAQ Styles */
        .faq-item {
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 1rem;
            background: #f7fafc;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #2d3748;
        }
        
        .faq-answer {
            padding: 1rem;
            display: none;
            background: white;
            border-top: 1px solid #e2e8f0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .tools-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
            
            .tool-card {
                padding: 1.25rem;
            }
        }
        
        @media (max-width: 480px) {
            .tools-grid {
                grid-template-columns: 1fr;
            }
        }
