.c-business-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.c-business-section .c-box__header {
    margin-bottom: 20px;
}

    .c-business-section .c-box__title {
        font-size: 28px;
        color: #004A82;
        position: relative;
        padding-bottom: 10px;
        font-family: Merriweather, serif;
        font-weight: 700;
    }

.c-business-section .c-box__title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
}

.c-business-slider {
    position: relative;
    padding: 0 50px;
}

.c-business-slider__wrapper {
    overflow: hidden;
    width: 100%;
}

.c-business-slider__track {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
    cursor: grab;
    user-select: none;
}

.c-business-slider__track:active {
    cursor: grabbing;
}

.c-business-item {
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.c-business-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: #ED1C24;
}

.c-business-item__inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.c-business-item__logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.c-business-item__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.c-business-item__title {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    margin: 0;
}

.c-business-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.c-business-slider__btn:hover:not(:disabled) {
    background: #ED1C24;
    border-color: #ED1C24;
    color: #fff;
}

.c-business-slider__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.c-business-slider__btn--prev {
    left: 0;
}

.c-business-slider__btn--next {
    right: 0;
}

.c-business-slider__btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
    .c-business-slider {
        padding: 0 40px;
    }
    
    .c-business-slider__btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 768px) {
    .c-business-slider {
        padding: 0 35px;
    }
    
    .c-business-section .c-box__title {
        font-size: 20px;
    }
    
    .c-business-slider__btn {
        width: 30px;
        height: 30px;
    }
    
    .c-business-slider__btn svg {
        width: 20px;
        height: 20px;
    }
    
    .c-business-item__inner {
        padding: 15px;
    }
    
    .c-business-item__logo {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .c-business-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .c-business-item__title {
        font-size: 13px;
    }
}