.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 150px;
    margin-top: 50px;
}

.left-column {
    width: 70%;
    box-sizing: border-box;
    padding-right: 50px;
}

.right-column {
    width: 30%;
    box-sizing: border-box;
}

.card {
    margin-bottom: 20px;
}

.tabs {
    display: flex;
    margin-bottom: 10px;
}

.tab-button {
    border-radius: 5px;
    flex: 1;
    padding: 10px;
    cursor: pointer;
    color: #ffffff;
    background-color: #353539;
    border: none;
    border-bottom: none;
    text-align: center;
    margin-right: 5px;
}

.tab-button:last-child {
    margin-right: 0;
}

.tab-button.active {
    color: #000000;
    background-color: #ffffff;
}

.tab-content {
    display: none;
}

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

@media screen and (max-width: 1024px) {
    .content {
        flex-direction: column;
        padding: 0 50px;
    }

    .left-column,
    .right-column {
        width: 100%;
        padding: 0;
    }
}