html {
    scroll-behavior: smooth;
}

.tte-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}


.tte-tabs::-webkit-scrollbar {
    display: none;
}


.tte-left {
    width: 70%;
}
.tte-sidebar {
    width: 30%;
    position: sticky;
    top: 100px;
}

/* Sticky Tabs */
.tte-tabs {
    position: sticky;
    top: 80px;
    background: #fff;
    z-index: 999;
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    overflow-x: auto;
    white-space: nowrap;
}

.tte-tabs button {
    flex: 0 0 auto;
    padding: 10px 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #000;
}

.tte-tabs button.active {
    color: orange;
    border-bottom: 2px solid orange;
}

/* Sections */
.tte-section {
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

/* Sticky Sidebar */
.tte-box {
    position: sticky;
    top: 140px;
    padding: 20px;
    border: 1px solid #ddd;
    background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .tte-container {
        flex-direction: column;
    }

    .tte-left,
    .tte-sidebar {
        width: 100%;
    }

    .tte-box {
        position: relative;
        top: 0;
    }
}