.sections-container {
    background: #ffffff;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 8px 16px 0 34px;
}

.sections-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.sections-buttons a:active,
.sections-buttons a:focus {
    text-decoration: none;
    color: #6d4916;
}

.section-btn {
    background-color: transparent;
    border: none;
    color: #191919;
    padding: 0 16px 6px 16px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-btn.active {
    color: #6d4916;
    border-bottom: 4px solid #6d4916;
    font-weight: 700;
    box-shadow: none;
}

.section-btn:hover:not(.section-btn.active) {
    color: #654e2e;
}

.section-btn .icon {
    background-color: #191919;
    transition: background-color 0.3s ease;
}

.section-btn.active .icon,
.section-btn:hover .icon {
    background-color: #6d4916;
}

.section-btn .icon.icon-5x {
    width: 30px;
    height: 30px;
}

/* Media Query for Responsiveness */
@media (max-width: 767px) {
    /* Assuming $breakpoint-xs - 1 = 768px - 1 */
    .sections-container {
        flex-direction: column;
        align-items: stretch;
        padding: 16px 100px;
    }

    .sections-buttons {
        flex-direction: column;
        width: 100%;
    }

    .section-btn {
        width: 100%;
        text-align: center;
    }
}
