.who-we-work-with-section {
    padding: 60px 20px;
    background-color: var(--section-bg-color, #F0E9D8);
}

.who-we-work-with-container {
    max-width: 1000px;
    margin: 0 auto;
}

.who-we-work-with-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--title-color, #556B2F); /* Dark Olive */
    font-size: 32px;
    font-weight: 700;
}

.who-we-work-with-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.who-we-work-with-item {
    flex: 0 0 48%; /* Two columns with gap */
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-color, #2E2A25);
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.who-we-work-with-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px; /* Align with text */
    width: 12px;
    height: 3px;
    background-color: var(--accent-color, #E2725B); /* Terracotta dash */
    border-radius: 2px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .who-we-work-with-item {
        flex: 0 0 100%; /* Stack on mobile */
        margin-bottom: 12px;
    }
    
    .who-we-work-with-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .who-we-work-with-section {
        padding: 40px 20px;
    }
}
