.custom-tabbed-section {
    padding: 40px 20px;
    color: #fff;
}

.custom-tab-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.custom-tab-title {
    background: #154763;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

.custom-tab-title.active {
    background: #00aaff;
}

.custom-tab-content {
    margin-bottom: 2rem;
}

.custom-tab-btn {
    background: #40a76e;
    color: #fff;
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 1rem;
}