/* Why Work With Me - Value Proposition */
.about-why-me {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
}

.why-me-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary, #ffffff);
}

.why-me-subtitle {
    color: var(--text-secondary, rgba(255, 255, 255, 0.7));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.why-me-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.why-me-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--bg-tertiary, #252b3d);
    color: var(--text-primary, #ffffff);
    border-radius: var(--radius-sm, 6px);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.why-me-chip:hover {
    background: rgba(77, 166, 255, 0.1);
    border-color: var(--primary-color, #4da6ff);
    transform: translateY(-2px);
}

.why-me-chip svg {
    width: 14px;
    height: 14px;
    color: var(--primary-color, #4da6ff);
    flex-shrink: 0;
}