.cs-1743-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 1025px) {
    .cs-1743-container {
        flex-direction: row;
        align-items: flex-start;
    }
}

.cs-1743-tabs {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1025px) {
    .cs-1743-tabs {
        flex: 0 0 300px;
    }
}

.cs-1743-tab-item {
    padding: 20px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    background: #fff;
    margin-bottom: 5px;
}

.cs-1743-tab-item.active, 
.cs-1743-tab-item:hover {
    color: #e53935;
    border-left-color: #e53935;
    font-weight: 500;
}

.cs-1743-content-wrapper {
    flex: 1;
    background: #fff;
    padding: 40px;
    min-height: 400px;
}

.cs-1743-content-item {
    display: none;
    animation: fadeIn 0.4s ease;
}

.cs-1743-content-item.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cs-1743-content-title {
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

.cs-1743-content-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cs-1743-suitable-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #5d4037;
}

.cs-1743-suitable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center;
}

.cs-1743-img-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
}

.cs-1743-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-1743-suitable-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .cs-1743-container {
        gap: 20px;
    }

    .cs-1743-tabs {
        display: none;
    }

    .cs-1743-content-wrapper {
        background: transparent;
        padding: 0;
        min-height: auto;
    }

    .cs-1743-content-item {
        display: block;
        background: #fff;
        padding: 28px 24px;
        border-radius: 16px;
    }

    .cs-1743-content-item + .cs-1743-content-item {
        margin-top: 20px;
    }

    .cs-1743-content-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .cs-1743-content-desc {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .cs-1743-content-item {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .cs-1743-content-title {
        font-size: 22px;
    }

    .cs-1743-suitable-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cs-1743-img-wrap {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }
}
