
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        header {
            text-align: center;
            padding: 40px 0;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        .subtitle {
            color: #7f8c8d;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        /* Comparison Card Styles */
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        .memory-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .memory-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .memory-card h2 {
            color: #2980b9;
            font-size: 1.8rem;
            margin-bottom: 20px;
            border-bottom: 2px solid #ecf0f1;
            padding-bottom: 10px;
        }
        .memory-card h3 {
            color: #2c3e50;
            font-size: 1.2rem;
            margin: 20px 0 10px;
        }
        .memory-card p {
            color: #555;
            margin-bottom: 15px;
        }
        /* Feature List Styles */
        .feature-list {
            margin: 15px 0;
            padding-left: 20px;
        }
        .feature-list li {
            margin-bottom: 8px;
            color: #34495e;
        }
        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 20px;
        }
        .pros, .cons {
            padding: 15px;
            border-radius: 6px;
        }
        .pros {
            background-color: #e8f5e9;
            border-left: 4px solid #27ae60;
        }
        .cons {
            background-color: #ffebee;
            border-left: 4px solid #e74c3c;
        }
        .pros h4, .cons h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        /* Comparison Table Styles */
        .comparison-table-section {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            padding: 30px;
            margin-bottom: 30px;
        }
        .comparison-table-section h2 {
            color: #2980b9;
            font-size: 1.8rem;
            margin-bottom: 20px;
            border-bottom: 2px solid #ecf0f1;
            padding-bottom: 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        table thead {
            background-color: #2980b9;
            color: #fff;
        }
        table th, table td {
            padding: 14px 15px;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }
        table tbody tr:hover {
            background-color: #f8f9fa;
        }
        table td strong {
            color: #27ae60;
        }
        .highlight-fram {
            background-color: #f0f8fb;
        }
        footer {
            text-align: center;
            padding: 20px 0;
            color: #7f8c8d;
            font-size: 0.9rem;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .comparison-grid {
                grid-template-columns: 1fr;
            }
            .pros-cons {
                grid-template-columns: 1fr;
            }
            .memory-card {
                padding: 20px;
            }
            .comparison-table-section {
                padding: 20px;
            }
            table {
                font-size: 0.9rem;
            }
            table th, table td {
                padding: 10px 8px;
            }
        }
    