 .comparison-table {
            width: 100%;
            border-collapse: collapse;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background: white;
            border-radius: 8px;
            overflow: hidden;
        }
        .comparison-table th, 
        .comparison-table td {
            padding: 8px 10px;
            text-align: center;
            border: 1px solid #e0e0e0;
        }
        .comparison-table th {
            background-color: #3498db;
            color: white;
            font-weight: 600;
            text-align: center;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .comparison-table tr:hover {
            background-color: #f1f7fd;
        }
        .group-header {
            background-color: #2980b9 !important;
            color: white;
            font-weight: bold;
            text-align: center;
        }
        .feature-name {
            background-color: #2980b9 !important;
            color: white;
            text-align: center;
        }
        .basic-header {
            background-color: #2ecc71 !important;
        }
        .pro-header {
            background-color: #e74c3c !important;
        }
        .tick {
            color: #27ae60;
            font-size: 20px;
            text-align: center;
            display: block;
        }
        .cross {
            color: #c0392b;
            font-size: 20px;
            text-align: center;
            display: block;
        }
        .note {
            margin-bottom: 25px;
            color: #7f8c8d;
            text-align: center;
        }