/* Comparative Market Analysis Table Styles */
.market-analysis-section {
    margin: 60px auto;
    max-width: 1200px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.market-analysis-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #254264;
    text-align: center;
    margin-bottom: 10px;
}

.market-analysis-section p {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.market-analysis-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.market-analysis-table th {
    background-color: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #254264;
    border-bottom: 1px solid #e9ecef;
}

.market-analysis-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: #333;
}

.market-analysis-table tr:last-child td {
    border-bottom: none;
}

.market-analysis-table .feature-column {
    font-weight: 600;
    width: 25%;
}

.check-mark {
    color: #2d85e2;
    font-size: 20px;
}

.x-mark {
    color: #dc3545;
    font-size: 20px;
}

.limited-column {
    color: #6c757d;
}

.savings-column {
    font-weight: 600;
}

.savings-column:first-of-type {
    color: #28a745;
}

.savings-column:last-of-type {
    color: #dc3545;
}

.time-column {
    color: #2d85e2;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .market-analysis-section {
        padding: 20px;
    }
    
    .market-analysis-table th,
    .market-analysis-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    .market-analysis-section h2 {
        font-size: 24px;
    }
    
    .market-analysis-section p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .market-analysis-table {
        font-size: 12px;
    }
    
    .market-analysis-table th,
    .market-analysis-table td {
        padding: 8px;
    }
}