/* Стили для списка табов */
.tabs {
  display: flex;
  justify-content: center; /* Центрирует табы */
  list-style: none; /* Убирает маркеры списка */
  padding: 0;
}

.tabs-list {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.tab-link {
    font-family: 'Inter Tight', 'Verdana', sans-serif;
    color: #DB6C36;
    font-size: 14px;
    padding: 5px 12px;
    cursor: pointer;
    border: 1px solid #DB6C36;
    margin-right: -1px;
    background-color: #0E0E0E;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-weight: 600;
}

.tab-link:hover {
    background-color: #DB6C36;
    color: #0E0E0E;
    border: 1px solid #DB6C36;
}

.tab-link.active {
    background-color: #DB6C36;
    color: #0E0E0E;
}

/* Стили для блоков с контентом */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

