/* WRAPPER */
.dcs-wrapper {
 
    padding: 40px 20px;

}

/* TABS */
.dcs-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 40px;
}

.dcs-tab {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 12px;
    cursor: pointer;
    position: relative;
    color: #333;
}

.dcs-tab.active {
    color: #000;
}

.dcs-tab.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #f58220;
}

/* CONTENT */
.dcs-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT IMAGE */
.dcs-left {
    width: 50%;
}

.dcs-left img {
    width: 100%;
    border-radius: 4px;
}

/* RIGHT SIDE */
.dcs-right {
    width: 50%;
}

/* CATEGORY LIST */
.dcs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dcs-list li {
    font-size: 26px;
    padding: 18px 0;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    transition: 0.2s;
}

.dcs-list li:hover {
    color: #f58220;
}

/* BUTTON */
.dcs-btn {
    margin-top: 25px;
}

.dcs-btn a {
    display: inline-block;
    background: #f58220;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

/* MOBILE */
@media(max-width:768px){
    .dcs-content {
        flex-direction: column;
    }

    .dcs-left,
    .dcs-right {
        width: 100%;
    }

    .dcs-list li {
        font-size: 20px;
    }
}