.menu-horizontal {
    display: flex;
    justify-content: flex-start;
}

.menu-horizontal.menu-btn {
    gap: 20px;
}

.menu-btn {
    background: none;
    border: 1px solid #ccc;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    transition: background 0.3s;
    border-radius: 5px;
    width: 50%;
    & p, h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0;
    }

}

.menu-btn.active {
    background-color: #1b4d3e;
    border-radius: 5px;

    & p, h1, h2, h3, h4, h5, h6 {
        color: #fff !important;
    }
;
}

.content-area {
    margin-top: 10px;
}

.content-area-section {
    display: none;
}

.content-area-section.active {
    display: block;
}