.dst-container-0211dc39 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.dst-tabs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 2px solid #eee;
}

.dst-tab-button {
    background: transparent;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: #666;
    transition: color 0.3s;
}

.dst-tab-button:hover {
    color: #333;
}

.dst-tab-button.active {
    color: #000;
}

.dst-tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.dst-panel {
    display: none;
    animation: dstFadeIn 0.3s ease-in-out;
}

.dst-panel.active {
    display: block;
}

.dst-panel-inner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 20px 0;
}

.dst-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #333;
    flex-shrink: 0;
}

.dst-icon svg {
    width: 40px;
    height: 40px;
    fill: #333;
}

.dst-benefits h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}

.dst-benefits p {
    margin: 0;
    line-height: 1.6;
}

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

@media (max-width: 767px) {
    .dst-panel-inner {
        flex-direction: column;
        gap: 15px;
    }
}