.comparison-grid-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.comparison-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

/* 2 columns by default */
.comparison-grid {
    grid-template-columns: repeat(2, 1fr);
}

.comparison-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.comparison-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.junk-removal-sect .comparison-card img {
    filter: brightness(0) invert(1);
}

.comparison-card h3 {
    color: #004369;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.comparison-card p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Dark Theme Support */
.junk-removal-sect .comparison-card {
    background: #003352;
    border-color: #005a8c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.junk-removal-sect .comparison-card h3 {
    color: #ffc400;
}

.junk-removal-sect .comparison-card p {
    color: #eee;
}

.comparison-footer {
    margin-top: 2rem;
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-card {
        padding: 2rem;
    }
}
