.comparison-section {
    position: relative;
    z-index: 2;
}

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.vs-card {
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    transition: 0.4s ease;
}

.vs-agency {
    background: rgba(15, 15, 15, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
}

.vs-me {
    background: var(--bg-card);
    border-color: rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.vs-header h3 {
    font-size: 24px;
    margin-bottom: 35px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vs-me .vs-header h3 {
    color: var(--brand-color);
}

.vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vs-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.vs-list i {
    margin-top: 3px;
    font-size: 20px;
    flex-shrink: 0;
}

.vs-agency .vs-list i {
    color: #ff4d4d;
    opacity: 0.7;
}

.vs-me .vs-list i {
    color: var(--brand-color);
    text-shadow: 0 0 15px var(--brand-glow);
}

.vs-list strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
}

.vs-list p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .vs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vs-card {
        padding: 30px 20px;
    }
    
    .vs-header h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .vs-list {
        gap: 25px;
    }
}