﻿body {
    font-family: 'Be Vietnam Pro', Helvetica, Arial, sans-serif;
    color: #30373e;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0e4294;
    border-radius: 20px 0 0 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    text-align: left;
    line-height: 1.3;
}

    .tab-btn.active, .tab-btn:hover {
        background: #a91673;
    }

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
    }

#mobile-menu {
    display: none;
}

    #mobile-menu.open {
        display: flex;
    }

.font-yesteryear {
    font-family: "Yesteryear", Sans-serif;
}