.business-section {
    background: #fff;
}

.business-section h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 60px;
    position: relative;
}

.business-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3366ff;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.business-item {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.business-item:nth-child(odd) {
    background: #f8f9fa;
}

.business-item:nth-child(even) {
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

.business-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-icon img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    height: auto;
}

.business-item h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

.business-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.business-item ul {
    list-style: none;
    margin-bottom: 30px;
    margin: 20px 0 10px 0;
    padding: 0;
}

.business-item li {
    color: #333;
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

.business-item li::before {
    content: '•';
    color: #3366ff;
    margin-right: 3px;
}

.business-btn {
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    margin-top: auto;
    align-self:anchor-center;
}

.business-item:nth-child(odd) .business-btn {
    background: linear-gradient(to bottom,#3366ff,#2f4fd3);
    color: white;
    border: none;
}

.business-item:nth-child(even) .business-btn {
    background-color: white;
    color: #3366ff;
    border: #3366ff 1px solid;
}
.business-btn:hover {
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .business-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .business-grid {
        gap: 15px;
    }

    .business-item {
        padding: 25px 15px;
    }

    .business-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }

    .business-item h3 {
        font-size: 20px;
    }

    .business-item li {
        font-size: 14px;
        padding-left: 15px;
    }

    .business-btn,
    .person-btn,
    .view-all-btn {
        padding: 8px 20px;
        font-size: 13px;
    }
}