#comparison {
    background-color: #f8fafc;
    padding: 80px 0;
}

#comparison h2 {
    text-align: center;
    color: #064e3b;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.comparison-compact {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-side {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.agency-side {
    border-top: 6px solid #ef4444;
}

.method-side {
    border-top: 6px solid #10b981;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
    z-index: 1;
}

.comparison-side h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #1e293b;
}

.comparison-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-side li {
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.5;
}

.comparison-side li:last-child {
    border-bottom: none;
}

.agency-side li {
    padding-left: 30px;
    position: relative;
}

.agency-side li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 1rem;
}

.method-side li {
    padding-left: 30px;
    position: relative;
}

.method-side li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .comparison-compact {
        flex-direction: column;
    }
    
    .method-side {
        transform: scale(1);
    }
    
    #comparison h2 {
        font-size: 2rem;
    }
}
